
省赛||周赛||训练||解题报告
刘da帅气
这个作者很懒,什么都没留下…
展开
-
Julyed
JulyedTime Limit: 2000MS Memory limit: 65536K题目描述 Julyed is preparing for her CET-6. She has N words to remember, but there is only M days left. If she can’t remember all these words,原创 2016-06-10 21:10:44 · 284 阅读 · 0 评论 -
hdu 5832 A water problem 大数取模问题 大水
大数取模问题,模拟除法,从第一个数字开始不断地对10001取模即可#include #include #include using namespace std;char s[10000010];int main(){ int cnt = 1; while(~scanf("%s", s)){ int mod = 0; for(int原创 2016-08-16 10:41:16 · 279 阅读 · 0 评论 -
hdu 5842 Lweb and String 字符串水题
比赛的时候硬生生的写的Longest_increasing_subsequence,结果比赛完才知道原来就是个统计字母个数的。。。英语不好啊啊,GG~~~~#include #include #include using namespace std;char s[110000];int a[30];int main(){ int t; scanf("%d", &原创 2016-08-16 10:36:08 · 267 阅读 · 0 评论