码迷,mamicode.com
首页 >  
搜索关键字:解题报告    ( 2279个结果
hdu 4861 Couple doubi (找规律 )
题目链接可以瞎搞一下,找找规律题意:两个人进行游戏,桌上有k个球,第i个球的值为1i+2i+?+(p?1)i%p,两个人轮流取,如果DouBiNan的值大的话就输出YES,否则输出NO。分析:解题报告 1 #include 2 #include 3 4 using namespace std;...
分类:其他好文   时间:2014-07-23 11:37:56    阅读次数:221
leetCode解题报告5道题(六)
题目一:Longest Substring Without Repeating CharactersGiven a string, find the length of the longest substring without repeating characters. For example, ...
分类:其他好文   时间:2014-07-22 23:04:12    阅读次数:246
HNU 12817 Shipura(表达式求值)
题目链接:http://acm.hnu.cn/online/?action=problem&type=show&id=12817解题报告:定义两种运算符号,一种是>>,就是右移,另一种是S,S = (X^2) % (1e9+7);跟其它表达式求值一样,用两个栈,一个存操作数,另一个存操作符,有一个问...
分类:其他好文   时间:2014-07-22 22:50:14    阅读次数:261
Codeforces Round #257 (Div. 2/A)/Codeforces450A_Jzzhu and Children
解题报告 没什么好说的,大于m的往后面放,,,re了一次,,, #include #include #include #include using namespace std; struct node { int x,cd; }num[1000000]; int main() { int n,m,c; cin>>n>>m; int i; for...
分类:其他好文   时间:2014-07-22 22:49:16    阅读次数:247
Codeforces Round #257 (Div. 2/B)/Codeforces450B_Jzzhu and Sequences
解题报告 算是规律题吧,,,x y z -x -y -z 注意的是如果数是小于0,要先对负数求模再加模再求模 给我的戳代码跪了,,, #include #include #include using namespace std; long long x,y,z; long long n; int main() { cin>>x>>y; cin>>n; z=y...
分类:其他好文   时间:2014-07-22 22:49:15    阅读次数:225
Codeforces449A Jzzhu and Chocolate && 449B Jzzhu and Cities
CF挂0了,简直碉堡了。两道题都是正确的思路但是写残了。写个解题报告记录一下心路历程。A题问的是 一个n*m的方块的矩形上切k刀,最小的那一块最大可以是多少。不难发现如果纵向切k1刀,横向切k2刀,那么答案应该是 (n/(k1+1)) * (m/(k2+1)),除法是取整的。虽然是取整,但是不难发现...
分类:其他好文   时间:2014-07-20 08:09:10    阅读次数:258
Codeforces 450(#257 (Div. 2) ) 解题报告
A: 1 // File Name: a.cpp 2 // Author: darkdream 3 // Created Time: 2014年07月19日 星期六 21时01分28秒 4 5 #include 6 #include 7 #include 8 #include 9 #include....
分类:其他好文   时间:2014-07-20 08:00:52    阅读次数:290
CSU-ACM2014暑假集训基础组训练赛(1) 解题报告
?Problem A HDU 4450 水题,签到题水题。。没啥好说的。给大家签到用的。 1 #include 2 int main(){ 3 int n,a,ans; 4 while(scanf("%d",&n),n){ 5 ans = 0; 6 ...
分类:其他好文   时间:2014-07-19 13:33:32    阅读次数:300
POJ训练计划1459_Power Network(网络流最大流/Dinic)
解题报告 这题建模实在是好建,,,好贱,,, 给前向星给跪了,纯dinic的前向星竟然TLE,sad,,,回头看看优化,,, 矩阵跑过了,2A,sad,,, /************************************************************************* > File Name: PowerN.cpp > Author: _nplu...
分类:Web程序   时间:2014-07-19 12:09:09    阅读次数:310
Codeforces Round #256 (Div. 2/C)/Codeforces448C_Painting Fence(分治)
解题报告 给篱笆上色,要求步骤最少,篱笆怎么上色应该懂吧,,,刷子可以在横着和竖着刷,不能跳着刷,,, 如果是竖着刷,应当是篱笆的条数,横着刷的话,就是刷完最短木板的长度,再接着考虑没有刷的木板,,, 递归调用,,, #include #include #include #include #define inf 999999999999999 using namespace std...
分类:其他好文   时间:2014-07-19 12:04:21    阅读次数:314
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!