题目不算难,我是用了冒泡排序的,边排序边比较能量大小。不过训练赛的时候没有做出来,因为看题没看清楚,看少了一句非常重要的话——Kirito can fight the dragons in any order.
代码:
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36</pre><pre name="code" class="cpp"><span style="font-size:18px;">#include<stdio.h> struct dragon { int x; int y; }; int main() { int n,i,j,s; bool bo=true; dragon dra[1001],tem; scanf("%d%d",&s,&n); for (i=1;i<=n;i++) scanf("%d%d",&dra[i].x,&dra[i].y); dra[0].y=0; for (i=2;i<=n;i++) { for (j=n;j>=i;j--) if (dra[j].x<dra[j-1].x) { tem=dra[j]; dra[j]=dra[j-1]; dra[j-1]=tem; } if (s<=dra[i-1].x) { bo=false; break; } else s=s+dra[i-1].y; } if (bo&&s>dra[n].x) printf("YESn"); else printf("NOn"); return 0; }</span><span style="font-size:14px;"> </span>
最后
以上就是无私乌龟最近收集整理的关于Dragons(CodeForces 230A)(贪心和排序)的全部内容,更多相关Dragons(CodeForces内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复