ICode9

精准搜索请尝试: 精确搜索
  • Flood Fill-dfs2020-02-20 14:03:41

    农夫约翰有一片 N∗MN∗M 的矩形土地。 最近,由于降雨的原因,部分土地被水淹没了。 现在用一个字符矩阵来表示他的土地。 每个单元格内,如果包含雨水,则用”W”表示,如果不含雨水,则用”.”表示。 现在,约翰想知道他的土地中形成了多少片池塘。 每组相连的积水单元格集合可以看作是

  • 马走日,简单搜索2020-02-04 18:02:22

    要做一个有心人——王晓燕 由于肺炎疫情的爆发,假期去学校机房上课的计划泡汤了 可是王主任早就给我们列好了计划 传统艺能 然后他就给我们整了一大堆题,其中就包含非常简单的搜索题 于是就有了这道简单的题目: 【题目描述】 马在中国象棋以日字形规则移动。 请编写一段程序,给定n×m

  • Tram POJ - 1847 spfa2020-01-27 17:02:09

    #include<iostream> #include<algorithm> #include<queue> #include<cstdio> #include<cstring> using namespace std; const int N=1100,INF=0x3f3f3f3f; int h[N],e[N],v[N],w[N],ne[N],idx; int dist[N]; bool st[N]; int n,beg,en,ans; vo

  • LeetCode 780. Reaching Points2020-01-17 12:04:22

    原题链接在这里:https://leetcode.com/problems/reaching-points/ 题目: A move consists of taking a point (x, y) and transforming it to either (x, x+y) or (x+y, y). Given a starting point (sx, sy) and a target point (tx, ty), return True if and only if a

  • WinDbg常用命令系列---sx, sxd, sxe, sxi, sxn, sxr, sx- (设置异常)2019-12-10 14:03:06

    简介 sx*命令控制调试器在正在调试的应用程序中发生异常或发生某些事件时采取的操作。 使用形式 sx sx{e|d|i|n} [-c "Cmd1"] [-c2 "Cmd2"] [-h] {Exception|Event|*} sx- [-c "Cmd1"] [-c2 "Cmd2"] {Exception|Event|*} sxr 参数 -c " Cmd1 " 指定在发生异常或事件时执行的命令

  • 「NOIP2013」华容道2019-10-31 15:57:22

    传送门 Luogu 解题思路 预支一点东西: 这题其实有着更为思维的图模型,还十分考验码力,不简单啊 这居然是联赛题 讲正解: 显然我们对于一种合法方案,空格子肯定是一直围绕着特定棋子反复横跳的。 所以说我们可以先预处理一下:对于任何一种合法的情况,求出空格在指定棋子的四个方向横跳的最

  • cytoscape.js 返回段距离和段权重值2019-10-26 11:05:02

    从坐标(PointX,PointY)返回段距离和段权重 segment-distances segment-weights function getDistWeight(sX, sY, tX, tY, PointX, PointY){ var W, D; D = ( PointY - sY + (sX-PointX) * (sY-tY) / (sX-tX) ) / Math.sqrt( 1 + Math.pow((sY-tY) / (sX-tX), 2) ); W = Ma

  • 金山云笔试题:AKM函数2019-09-29 22:51:50

    1. 题目描述 /**阿克曼(Ackmann)函数【题目描述】阿克曼(Ackmann)函数A(m,n)中,m,n定义域是非负整数(m<=3,n<=10),函数值定义为:akm(m,n) = n+1;         (m=0时)akm(m,n) = akm(m-1,1);  (m>0,n=0时)akm(m,n) = akm(m-1,akm(m, n-1)); (m,n>0时)【输入】输入m和n。【输出】函数

  • Codeforces 12062019-08-31 21:03:08

    B. 解 把所有正数变为1,负数变为-1。然后如果-1有偶数个,那么把所有的0变为1;如果-1有奇数个,如果数列中存在0,把其中一个0变为-1,其余全变为1,否则把其中一个负数变为1。 Code #include<bits/stdc++.h> using namespace std; int main(){ int n,mo=0,cnt0=0; long long ans=0;

  • 【Kickstart】2019 Round C - Wiggle Walk2019-08-25 20:03:33

    解法 rc个点映射到一维ID,然后维护4个方向的并查集: 比如E方向的并查集,最开始,每个点都代表它自己,当某个点被访问过之后,如果有人向东走到了这个点,那么它应该直接走到这个点东边第一个没有被访问的点,那就是这个点的root 所以算法应该是这样的,对于每个被访问到的点x,找到它周围四

  • linux手动测试 rsync 的同步情况2019-08-09 15:03:47

    特别强调:此步很关键,如果这不能同步,后面的 inotify 配好了也不会同步数据。   1) 分别创建待同步数据 [root@rsync-client-inotify ~]# mkdir /data/{web,web_data}/redhat.sx -p [root@rsync-client-inotify ~]# touch /data/{web/redhat.sx/index.html,web_data/redhat.sx /a.j

  • 1257:Knight Moves2019-07-05 16:57:11

    传送门:http://ybt.ssoier.cn:8088/problem_show.php?pid=1257   【题目描述】 输入n 代表有个n×n 的棋盘,输入开始位置的坐标和结束位置的坐标,问一个骑士朝棋盘的八个方向走马字步,从开始坐标到结束坐标可以经过多少步。 【输入】 首先输入一个n ,表示测试样例的个数。 每个测试样

  • Codeforces contest 1185 E. Polycarp and Snakes2019-06-21 14:49:17

    https://codeforces.com/contest/1185/problem/E 题意:给你一个n*m的方框,方框上面有点表示空着的,还有一些字母,其中规定一个字母连成一排或者一列,可以形成一条蛇(?),然后问有几条蛇,分别输出蛇的两个端点,其中ASCLL码较大的字母可以覆盖较小的字母; 做法:直接模拟就可以了,注意题上样例

  • Codeforces 348D DP + LGV定理2019-06-10 09:55:06

    题意及思路:https://www.cnblogs.com/chaoswr/p/9460378.html 代码: #include <bits/stdc++.h>#define LL long longusing namespace std;const int maxn = 3010;const LL mod = 1000000007;LL dp[maxn][maxn];char s[maxn][maxn];int n, m;LL ans[4];void solve(int sx, int

  • python笔记:5.1.1matplotlib_函数绘图_3D_单变量折线图_一列数据折线图2019-06-02 20:48:18

    # -*- coding: utf-8 -*- """ Created on Sun Jun 2 19:23:26 2019 @author: User """ import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from matplotlib import c

  • 780. Reaching Points2019-05-15 22:38:23

    A move consists of taking a point (x, y) and transforming it to either (x, x+y) or (x+y, y). Given a starting point (sx, sy) and a target point (tx, ty), return True if and only if a sequence of moves exists to transform the point (sx, sy) to (tx

  • LOJ 116 有源汇有上下界最大流2019-05-03 16:39:17

    思路 还是模板。 主要是有源汇之后,只有t和s不满足流量平衡,只要从t向s连一条下界是0,上界INF的边就变回无源汇的情况了 然后求出可行流流量(就是t到s的边的流量或者这条边反向边流量的相反数)后,再从s到t跑一遍最大流就能求出答案了(原来的可行流已被统计,剩下的s到t路径上能流过去的流也

  • 广搜例题2019-04-20 09:42:05

    本想用深搜水题,然而几乎所有的题都是最少步数,所以广搜更方便 例如 【题目描述】 当你站在一个迷宫里的时候,往往会被错综复杂的道路弄得失去方向感,如果你能得到迷宫地图,事情就会变得非常简单。 假设你已经得到了一个n*m的迷宫的图纸,请你找出从起点到出口的最短路。 【输入】 第一行

  • 洛谷P1746 离开中山路2019-04-13 20:52:34

    https://www.luogu.org/problemnew/show/P1746 思路:用广搜从起点开始,遍历所有可达的点,再往下遍历直到到达终点,所以能保证得到的结果一定是最优解 #include<bits/stdc++.h>using namespace std;int n,sx,sy,ex,ey;//sx、sy为起始坐标,ex、ey为目的地坐标 char a[1001][1001];int dx[

  • [Swift]LeetCode780. 到达终点 | Reaching Points2019-03-16 13:54:23

    A move consists of taking a point (x, y) and transforming it to either (x, x+y) or (x+y, y). Given a starting point (sx, sy) and a target point (tx, ty), return True if and only if a sequence of moves exists to transform the point (sx, sy) to (tx,

  • Codeforces 348D Turtles LGV2019-03-13 19:44:55

    Turtles 利用LGV转换成求行列式值。 #include<bits/stdc++.h>#define LL long long#define fi first#define se second#define mk make_pair#define PLL pair<LL, LL>#define PLI pair<LL, int>#define PII pair<int, int>#define SZ(x) ((int)x.size())#define

  • 一本通1630SuperGCD2019-02-26 20:38:47

    1630:SuperGCD 时间限制: 1000 ms         内存限制: 524288 KB 【题目描述】 来源:SDOI 2009 Sheng Bill 有着惊人的心算能力,甚至能用大脑计算出两个巨大的数的 GCD(最大公约数)!因此他经常和别人比赛计算 GCD。有一天 Sheng Bill 很嚣张地找到了你,并要求和你比赛,但是输给 Sheng

  • 白银莲花池2019-02-18 20:51:24

      #include <bits/stdc++.h>using namespace std;#define p make_pair#define ll long long#define INF 0x3f3f3f3f#define MAXN 1000010#define MAXM 1010inline int read(){ int x = 0,ff = 1;char ch = getchar(); while(!isdigit(ch)) { if(ch

  • 2019 Wannafly Winter Camp2019-02-13 22:49:50

    ---恢复内容开始--- day1:   比赛网址:https://www.zhixincode.com/contest/1   wlsnb!   2.吃豆豆:   dp[12][12][100010];dp[i][j][k]:在k秒时,i,j位置处得到的糖果    1 #include<bits/stdc++.h> 2 using namespace std; 3 const int maxn=10010; 4 int dp[12][1

  • Luogu-P2324-[SCOI2005]骑士精神2019-02-04 16:44:23

    【题面】 题目描述: 输入输出格式: 输入格式: 第一行有一个正整数T(T<=10),表示一共有N组数据。接下来有T个5×5的矩阵,0表示白色骑士,1表示黑色骑士,*表示空位。两组数据之间没有空行。 输出格式: 对于每组数据都输出一行。如果能在15步以内(包括15步)到达目标状态,则输出步数,否则

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有