J题:company 题目描述 There are n kinds of goods in the company, with each of them has a inventory of cnti and direct unit benefit vali. Now you find due to ...
分类:
其他好文 时间:
2017-10-07 14:52:10
阅读次数:
183
I: Parity check 题目描述 Fascinated with the computer games, Gabriel even forgets to study. Now she needs to finish her homework, and there is an easy pro ...
分类:
其他好文 时间:
2017-10-07 14:37:46
阅读次数:
205
G: sum of power 题目描述 Calculate mod (1000000000+7) for given n,m. Calculate mod (1000000000+7) for given n,m. 输入 Input contains two integers n,m(1≤n≤10 ...
分类:
其他好文 时间:
2017-10-06 15:55:35
阅读次数:
134
F题:quadratic equation 时间限制: 2 秒 内存限制: 128 MB | 提交: 277 解决: 44 题目描述 With given integers a,b,c, you are asked to judge whether the following statement i ...
分类:
其他好文 时间:
2017-10-06 15:27:40
阅读次数:
213
A题:Return of the Nim 时间限制: 1 秒 内存限制: 64 MB | 提交: 33 解决: 16 题目描述 Sherlock and Watson are playing the following modified version of Nim game: There are ...
分类:
其他好文 时间:
2017-10-06 13:27:07
阅读次数:
195
点击打开题目链接 非常明显的一道博弈题目,可是在求SG的时候,子状态写错了,一直都没有AC。最后还是水过去的额。比赛后还是自己写了一遍; # include <cstdio> # include <cstring> # include <iostream> using namespace std; ...
分类:
其他好文 时间:
2017-08-09 09:59:29
阅读次数:
144
山东省赛的一道题 题意: 聚会一个圆桌,相邻字母不能重复,有ABC三种字母 问有多少种方法 思路: dp 第一维滚动,第二维ABC当前位置,后三维存ABC用的个数 由于放在了UPCOJ上,判题比较慢,优化了一下, 在SDUTIJ上20ms ...
分类:
其他好文 时间:
2016-05-14 18:26:38
阅读次数:
198
点击打开题目链接
很明显的一道博弈题目,但是在求SG的时候,子状态写错了,一直都没有AC。最后还是水过去的额;比赛后还是自己写了一遍;
# include
# include
# include
using namespace std;
int sg[1200];
int get(int x)
{
if(x < 0) return 0;
if(s...
分类:
其他好文 时间:
2015-08-13 12:26:17
阅读次数:
114
从空间拷过来的,虽然已经过去一个月了,记忆犹新
也算是重新拾起这个blog
Just begin
看着一群群大牛还有队友男神的省赛总结都出了 我终于也耐不住寂寞 来做个流水账抒抒情好了
第一次省赛 心情很激动 也掺杂着一点小紧张 其实最想吐槽的是伙食 真的真的真的真的吃不饱。。。不过很感谢我们xh老师提供的x牛和x力架 正式赛的时候根本没心思吃午饭 x牛确实提供了很多...
分类:
其他好文 时间:
2015-06-07 13:53:46
阅读次数:
214
题目链接:Big Number
题目大意:每次输入两个数,第一个是高精度,第二个数小于100000;求 a mod b
根据同余定理:
(a+b)% c = (a%c+ b%c)%c
(a*b)%c = ( a%c* b%c)%c
所以 对于大数,例如 :123 可以这样分解
123 = (1*10+2)*10 + 3;
123 % c = ( (...
分类:
其他好文 时间:
2015-05-23 14:16:41
阅读次数:
138