题目分类:排序/检索
文章平均质量分 73
NickHdx
有一口气点一盏灯
展开
-
UVa:340 - Master-Mind Hints
题意:设计者设计了一组编码原创 2014-05-02 18:08:28 · 564 阅读 · 0 评论 -
UVa:10785 - The Mad Numerologist
注意:在keep the vowel and consonant value minimum的基础上,要原创 2014-06-04 12:14:09 · 490 阅读 · 0 评论 -
UVa:755 - 487--3279
找出有重复的电话号码并输出原创 2014-06-03 11:30:38 · 602 阅读 · 0 评论 -
UVa:120 - Stacks of Flapjacks
题意:给出一叠煎饼的直径大小,原创 2014-05-14 17:41:45 · 506 阅读 · 0 评论 -
UVa:10194 - Football (aka Soccer)
以下有两组代码,一组AC了,一组每原创 2014-05-30 19:10:32 · 712 阅读 · 0 评论 -
UVa:400 - Unix ls
题意:输入若干个“文件名”()原创 2014-05-19 20:22:09 · 573 阅读 · 0 评论 -
Uva:156 - Ananagrams
题意:输入纯英文文本,原创 2014-05-16 10:08:30 · 497 阅读 · 0 评论 -
UVa:299 - Train Swapping
题意:给出一列火车的车厢排列,要求将车厢原创 2014-05-09 23:04:56 · 630 阅读 · 0 评论 -
UVa:152 - Tree's a Crowd
题意:给出若干个点的三维坐标,原创 2014-05-06 12:03:35 · 494 阅读 · 0 评论 -
UVa:10474 - Where is the Marble?
#include#include#includeusing namespace std;const int maxn=10000+10;int q[maxn],p[maxn][2];bool cmp(int a, int b){ return a<b;}int main(){ int m,n,T=0; while(~scanf("%d%d",&m,&n原创 2014-05-04 21:22:36 · 445 阅读 · 0 评论 -
UVa:10420 - List of Conquests
#include#include#includeusing namespace std;const int maxn=2000+10;struct Beauty{ char ctry[90]; int num;}bea[maxn];char B[90],b[90];bool cmp(Beauty a,Beauty b){ return strcmp(a.原创 2014-05-04 12:22:57 · 576 阅读 · 0 评论 -
UVa:123 - Searching Quickly
题意:给出要被忽略的单词列表和要被排序的原创 2014-05-24 16:06:17 · 513 阅读 · 0 评论