题目链接 题意:有许多party在同一天举行,每个party有开始时间与截止时间,爱玩的女主要在一天中参加尽量多的party,而且每个party待的时长不小于半个小时,求女主最多能够参加的party数量。 1 #include<stdio.h> 2 #include<string.h> 3 #inc ...
分类:
其他好文 时间:
2016-07-24 07:01:00
阅读次数:
173
题目链接 题意:给9乘9的数独矩阵,挖去其中5个元素,要求补全其余元素 所犯错误:1.题目中所给的数独矩阵本身可能就是错的(没认真看题,wa惨了) 2.回溯时,遇到正确的答案就终止循环 #include<stdio.h> #include<string.h> #include<queue> usin ...
分类:
其他好文 时间:
2016-07-23 16:36:23
阅读次数:
122
Hotel Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit Status Hotel Submit Status Description Last year summer Max traveled ...
分类:
其他好文 时间:
2016-07-21 21:55:22
阅读次数:
204
一、Π (Pi) March 14 marks Pi Day, the holiday commemorating the mathematical constant π (pi), written numerically as 3.141592+. Since mathematic notatio ...
分类:
其他好文 时间:
2016-07-17 12:16:10
阅读次数:
3792
A#include
#include
#include
#define MAXN 100005
#define mem(a) memset(a, 0, sizeof(a))
using namespace std;int TreeArray[MAXN], Left[MAXN], Right[MAXN], Fork[MAXN];
typedef...
分类:
其他好文 时间:
2016-07-15 21:57:21
阅读次数:
206
Time Limit: 2000MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u Description Tour operator Your Personal Holiday organises guided bus trips acr ...
分类:
其他好文 时间:
2016-07-14 03:02:28
阅读次数:
277
看清楚题目就好了 or if the user’s password length is at least 8 characters and the user made a mistake with only one character (either replaced it with a wrong character or dropped it).
然后讨论一下就好了...
分类:
其他好文 时间:
2016-07-13 17:13:48
阅读次数:
226
先整体的处理一遍,然后边输入操作, 边维护, 什么时候++, 什么时候--
这样直接边跑边维护, 挺常见的, Codeforces上见过好几次^_^...
分类:
其他好文 时间:
2016-07-13 17:12:38
阅读次数:
210
贪心
每次找钱,都是优先使用 大票, 因为小票具有大额票的所有功能, 而且具有大额票所不具有的功能, 所以每次优先使用大额飘
//由于用了自己的一键测试多组数据的版
//!前面有些数据没有重置, 白白检查了这么长时间(┬_┬)...
分类:
其他好文 时间:
2016-07-13 17:12:27
阅读次数:
170
dfs就好, 好久没用写dfs了,简单dfs还是Debug了好长时间, 尴尬⊙﹏⊙‖∣
记得把那些转移的东西写在参数里
读入char类型, 记得看看要不要用getchar吸掉换行空格什么的...
分类:
其他好文 时间:
2016-07-13 17:11:51
阅读次数:
204