BFS 1:队列stl #include <iostream> #include <cmath> #include <cstdio> #include <cstring> #include <string> #include <map> #include <iomanip> #include <al ...
分类:
其他好文 时间:
2019-03-12 22:37:15
阅读次数:
174
题意:模拟 模拟就行 #include<iostream> #include<cstdio> #include<stack> using namespace std; const int N=1e2+7; struct robot{ int id,x,y,to; }; const int dx[4] ...
分类:
其他好文 时间:
2019-03-12 18:31:23
阅读次数:
132
Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a numb ...
分类:
其他好文 时间:
2019-03-11 00:44:09
阅读次数:
175
看一下中文版的题目就好,英文题目太晦涩了。 有两种方法可以解题 一种是贪心+优先队列 另一种是贪心+并查集 优先队列 需要说的都在代码注释里 #include<cstdio> #include<queue> #include<algorithm> using namespace std; struc ...
分类:
其他好文 时间:
2019-03-09 23:27:56
阅读次数:
189
题意:给出一个整数n,(1 <= n <= 200)。求出任意一个它的倍数m,要求m必须只由十进制的'0'或'1'组成,m不超过100位。 解题思路:首先大家应该会想到暴力枚举每一个m,但仔细考虑本题条件应该会涉及处理大数和超时的风险。而使用同余定理就可完全克服这个问题,再仔细分析搜索树就可进一步完 ...
分类:
其他好文 时间:
2019-03-09 15:30:44
阅读次数:
164
Bessie noted that although humans have many universities they can attend, cows have none. To remedy this problem, she and her fellow cows formed a new ...
分类:
其他好文 时间:
2019-03-09 11:39:44
阅读次数:
121
Nim http://poj.org/problem?id=2975 Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7233 Accepted: 3437 Description Nim is a 2-player game f ...
分类:
其他好文 时间:
2019-03-08 23:31:17
阅读次数:
169
Description Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we thin ...
分类:
其他好文 时间:
2019-03-08 17:14:02
阅读次数:
167
Every year, Farmer John's N (1 <= N <= 20,000) cows attend "MooFest",a social gathering of cows from around the world. MooFest involves a variety of e ...
分类:
编程语言 时间:
2019-03-08 12:33:21
阅读次数:
132
题目链接:http://poj.org/problem?id=2356 题目大意:给你n个数,要你从n个数选出若干个数,要求这若干个数的和是n的倍数,输出选择数的个数,以及相应的数。 解题思路: 以下摘自博客:https://www.cnblogs.com/pengwill/p/7367031.ht ...
分类:
其他好文 时间:
2019-03-07 23:21:26
阅读次数:
295