-
http://codeforces.com/contest/611/problem/A 题意:两种查询,一种是 x of week,x为1.。7,对应输出2016年星期x有多少天。另一种为x of month ,对应输出2016年至少有x天的月份有多少天。 思路:直接搞。。。。竟然脑残被hack了。。。sad. #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int inf = 0x3f3f3f3f; int x; char …
Read More -
http://codeforces.com/contest/612/problem/C 题意:其实就是栈的基本操作。。水题。 /* *********************************************** Author :111qqz Created Time :2015年12月25日 星期五 22时58分50秒 File Name :code/cf/edu4/C.cpp ************************************************ */ #include <cstdio> #include <cstring> #include …
Read More -
http://codeforces.com/contest/612/problem/B 水。 /* *********************************************** Author :111qqz Created Time :2015年12月25日 星期五 22时58分38秒 File Name :code/cf/edu4/B.cpp ************************************************ */ #include <cstdio> #include <cstring> #include <iostream> #include …
Read More -
http://codeforces.com/contest/612/problem/A 水题...直接枚举就好。 /* *********************************************** Author :111qqz Created Time :2015年12月25日 星期五 22时58分26秒 File Name :code/cf/edu4/A.cpp ************************************************ */ #include <cstdio> #include <cstring> #include <iostream> …
Read More -
https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid;=8&page;=show_problem&problem;=4704 题目大意是说,定义一个数的lucky number是距离i最远的j且满足(a[i]<a[j] i<j)。 问对所有数最大的lucky number是什么。 不必线段树。 我们可以先处理出a[i]的最远点。倒着扫一遍即可。 然后可以处理出大于等于a[i]的最远位置。 …
Read More -
由于顺序是可以改变的. 所以考虑是否可以映射.只要存在字母对应出现的次数都相同.那么就可以通过映射得到. 具体是开一个数组记录每个字母出现的次数... 然后sort /************************************************************************* > File Name: code/poj/2159.cpp > Author: 111qqz > Email: rkz2013@126.com > Created Time: 2015年09月23日 星期三 19时04分34 …
Read More -
应该3分钟过的题。。。 结果花了8分钟。。。ssssad /************************************************************************* > File Name: code/cf/#317/A.cpp > Author: 111qqz > Email: rkz2013@126.com > Created Time: 2015年08月23日 星期日 00时29分47秒 ************************************************************************/ …
Read More