上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 32 下一页
摘要: 模拟,注意为偶数的情况 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue> 6 #include<stack> 7 #include<cmath> 8 #i 阅读全文
posted @ 2016-04-23 22:58 yyblues 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 水题。。直接暴力 1 #include<cstdio> 2 #include<algorithm> 3 using namespace std; 4 const int inf = 0x3f3f3f3f; 5 int a[130][130],d,n,x,y,z,num,ans=-inf; 6 int 阅读全文
posted @ 2016-04-23 22:57 yyblues 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 借鉴大神思路。。。 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue> 6 #include<stack> 7 #include<cmath> 8 #inc 阅读全文
posted @ 2016-04-23 22:32 yyblues 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 总体思路好想,就是在找K个不同字母的时候,卡时间。 看了大神代码,发现goto的!!!!998ms 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue> 6 阅读全文
posted @ 2016-04-22 23:43 yyblues 阅读(247) 评论(0) 推荐(0) 编辑
摘要: B题。。。水题,记录当前行是由原矩阵哪行变来的。 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue> 6 #include<stack> 7 #includ 阅读全文
posted @ 2016-04-22 22:16 yyblues 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 水题。。。就是n的三进制后m位 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue> 6 #include<stack> 7 #include<cmath> 阅读全文
posted @ 2016-04-22 22:13 yyblues 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 与HDU 1907一样。。。 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue> 6 #include<stack> 7 #include<cmath> 8 阅读全文
posted @ 2016-04-21 16:59 yyblues 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 博弈入门题吧。 把尼姆博弈推广到n堆,都是用异或运算。还有个总结的地方是,只要先手面对的是奇异局势,则胜负都掌握在后手。本题,题目要求是最后拿完的输,尼姆博弈是最后拿完的赢。但实际上优先权都掌握在后手,前提是先手面对的是奇异局势。 本题还要注意一下每堆都是1的情况。 最后还是膜拜一下OI大神,推荐一 阅读全文
posted @ 2016-04-21 16:02 yyblues 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 思路:从后往前一位一位的模拟,每次判断一下当前枚举的数是否之间枚举过了。或者当前枚举数过小,小于1989. 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<iostream> 5 #include<queue 阅读全文
posted @ 2016-04-20 21:42 yyblues 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 这种题代码都写残。。。。 思路就是先把每个数都记为1,统计正负数的和sum,如果sum大于n,则负数和q减1,加的时候类似。注意限制条件 比较水的题。。。。 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<i 阅读全文
posted @ 2016-04-20 20:23 yyblues 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 32 下一页