X-man

导航

2013年4月23日 #

hdu 1860 (统计字符)(stl)

摘要: #include<iostream>#include<stdio.h>#include<string.h>#include<string>#include<map>using namespace std;char s1[6],s2[85];map<char,int>m;int main(){ while(1) { m.clear(); gets(s1); if(s1[0]=='#')return 0; gets(s2); if(s2[0]=='#')return 0; int s1l=str 阅读全文

posted @ 2013-04-23 22:36 雨钝风轻 阅读(235) 评论(0) 推荐(1) 编辑

woj 1478 - Key Logger(list)

摘要: 模拟题:http://acm.whu.edu.cn/land/problem/detail?problem_id=1478#include<stdio.h>#include<string>#include<list>#include<iostream>using namespace std;string s;string ::iterator its;list<char>l;list<char>::iterator itl;int main(){ int n; scanf("%d",&n); f 阅读全文

posted @ 2013-04-23 21:59 雨钝风轻 阅读(243) 评论(0) 推荐(0) 编辑

hdu 4502(吉哥系列故事——临时工计划)

摘要: 枚举的错误:View Code #include<stdio.h>#include<algorithm>using namespace std;struct Node{ int s;//time start int e;// end int c;//money}N[1010];bool cmp(Node a,Node b){ if(a.s<b.s)return true; else if(a.s==b.s&&a.c>b.c)return true; return false;}int main(){ int T,m,n; int max,mx 阅读全文

posted @ 2013-04-23 13:14 雨钝风轻 阅读(226) 评论(0) 推荐(0) 编辑