2013年6月29日
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1591&cid=1187 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std ; 7 int main() 8 { 9 int n ;10 int a[110] ;11 scanf("%d",&n) ;12 for(int i = 0 ; i <= n-1 ; i++)13 scanf("%d",&a[i]) ;14 int 阅读全文
posted @ 2013-06-29 21:02 枫、 阅读(224) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2144&cid=1186这道题一开始是用prim算法做的,一直错一直错,后来问了帅郭改用Kruskal做才对,再后来问了THH和二货才改对的prim算法,是因为重边我没处理啊,上火 1 #include 2 #include 3 #include 4 #include 5 using namespace std ; 6 #define oo (1=low[j])26 {27 min = low[j];28 ... 阅读全文
posted @ 2013-06-29 19:16 枫、 阅读(434) 评论(0) 推荐(0) 编辑
  2013年6月28日
摘要: 以前做过的用的字典树,可是貌似现在再用超内存。。。。求解释。。。问了LYN用的map函数做的,又去小小的学了map函数。。。。http://wenku.baidu.com/view/0b08cece05087632311212ba.html感觉这个写的挺详细的http://wenku.baidu.com/view/d140cfcca1c7aa00b52acb46.html这个的话挺有意思,帮助理解题目描述Well, how do you feel about mobile phone? Your answer would probably be something like that &quo 阅读全文
posted @ 2013-06-28 20:02 枫、 阅读(255) 评论(0) 推荐(0) 编辑
  2013年6月21日
摘要: 先是普通的数组做法 1 #include 2 #include 3 int main() 4 { 5 char ch[256] ; 6 while(~scanf("%s",ch)) 7 { 8 char sh[256] ; 9 int top = -1 ;//底下用于判断数组里是否是空10 int len = strlen(ch) ;11 for(int i = 0 ; i 2 #include 3 #include 4 #include 5 using namespace std; 6 int main... 阅读全文
posted @ 2013-06-21 21:48 枫、 阅读(322) 评论(0) 推荐(0) 编辑
  2013年6月20日
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2031这个题主要是注意判断大于R大于10的情况下进行处理,还有负号不能忘了处理,提前输出就行,其余的与以前做过的并没什么不同了,差不多还是以前的思路 1 #include <cstdio> 2 #include<cstring> 3 #include <cstdlib> 4 #include<iostream> 5 using namespace std ; 6 const int MAXN = 1010 ; 7 int main() 8 { 9 int R,N 阅读全文
posted @ 2013-06-20 02:28 枫、 阅读(161) 评论(0) 推荐(0) 编辑
  2013年6月14日
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2603&cid=1178明白了题的题意但是不会敲,问了队里比我厉害的大神才懂这个是极坐标的做法 1 #include 2 #include 3 #include 4 #define PI acos(-1.0) 5 int main() 6 { 7 int n; 8 double x1,x2,x3,y1,y2,y3,l; 9 scanf("%d",&n);10 for(int i = 1 ; i 2 //#include 3 //#include 4 //#i 阅读全文
posted @ 2013-06-14 21:34 枫、 阅读(180) 评论(0) 推荐(0) 编辑
  2013年6月7日
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1009题意 :就是说给出钱数,然后去买更多的豆豆,每种豆豆可以不买完。。思路 :贪心。 1 #include 2 #include 3 #include 4 struct node 5 { 6 double... 阅读全文
posted @ 2013-06-07 01:14 枫、 阅读(186) 评论(0) 推荐(0) 编辑
  2013年6月5日
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2076&cid=1159示例输入333 3 310 5 131 3 16 2 371 4 6 4 2 4 33 2 1 7 6 5 4示例输出035这个题用贪心思路解题,做的时候最主要的是进行数组的标记,每份作业都只有一天写完,把分值从大到小排序,从最大的开始看是否有时间去做 1 #include<stdio.h> 2 #include<stdlib.h> 3 struct node 4 { 5 int u,v,w ; 6 }a[10001],b ; 7 int 阅读全文
posted @ 2013-06-05 00:58 枫、 阅读(154) 评论(0) 推荐(0) 编辑
  2013年6月1日
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2174&cid=1174第一种方法,用if else进行麻烦的判断。。。 1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 char ch[7] ; 6 while(~scanf("%s",ch)) 7 { 8 int a = 10*(ch[0]-'0')+(ch[1] - '0') ; 9 int b = 10*(ch[1]-'0& 阅读全文
posted @ 2013-06-01 20:34 枫、 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 题目描述Cainiao is a university student who loves ACM contest very much. It is a festival for him once when he attends ACM Asia Regional Contest because he always can find some famous ACMers there.Cainiao attended Asia Regional Contest Fuzhou Site on November 20, 2011. After he got seat map, he wanted t 阅读全文
posted @ 2013-06-01 16:21 枫、 阅读(190) 评论(0) 推荐(0) 编辑