E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Conquests
对Uva 10420 - List of
Conquests
的文化补充
“Thisisthelistofthebeautiesmymasterhasloved,alistI’vemadeoutmyself:takealook,readitwithme.InItalysixhundredandforty,inGermanytwohundredandthirty-one,ahundredinFrance,ninety-oneinTurkey;butinSpainalrea
kirsi0
·
2020-08-24 14:44
其他
文化
UVA 10420 (暑假-排序、检索 -B - List of
Conquests
)
#include#include//#include#includeusingnamespacestd;intstrcompare(constvoid*_a,constvoid*_b){char*a=(char*)_a;char*b=(char*)_b;returnstrcmp(a,b);}intmain(){constintMax=1050;intn;while(scanf("%d",&n)!=
冰阔落
·
2020-08-12 17:33
排序与检索
ACM
刷题录
STL-List of
Conquests
DescriptionInActI,LeporelloistellingDonnaElviraabouthismaster’slonglistofconquests:“Thisisthelistofthebeautiesmymasterhasloved,alistI’vemadeoutmyself:takealook,readitwithme.InItalysixhundredandforty,i
Gitfan
·
2020-04-04 19:02
UVA-10420 List of
Conquests
分析:神器的简单应用#include #include #include #include #include #include usingnamespacestd; intmain() { charstr[80],s[80]; intn; mapm; scanf("%d",&n); while(n--) { scanf("%s",s); gets(str); m[s]++; } map::iter
qq_32036091
·
2015-12-21 06:00
list
co
of
UVA-10420
UVA 10420 - List of
Conquests
继续跟着白书做,这道题是要找每个国家的人的数量,然后按国家的字典序输出,很水的 一道题,但是因为少了个getchar()浪费了不少时间。 #include<stdio.h>#include<string.h>#include<stdlib.h>char ct[2005][80], s[80];int cmp( const void *_p, const v
·
2015-11-13 01:28
list
UVA10420 List of
Conquests
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=98&page=show_problem&problem=1361 题不难 我交了八次。。 刚开始以为还要判断一个国家会不会重复妇女的名字 写的复杂了 一直runtime 看了下别人的代码 知道不用判断 删去了
·
2015-11-11 10:45
list
[算法练习] UVA 10420 - List of
Conquests
?
UVA Online Judge 题目10420 - List of
Conquests
问题描述: 题目很简单,给出一个出席宴会的人员列表,包括国籍和姓名(姓名完全没用)。
·
2015-11-09 11:59
list
UVa 10420 List of
Conquests
题意就是有N个pl妹子,然后每行第一个单词是妹子的国籍,后面是妹子的名字。 你的任务就是统计相同国籍妹子的个数,然后按字母表顺序输出。 我首先把所有的国籍都读入,然后用qsort()按字母表顺序排序。 List of ConquestsInput: standard inputOutput: standard outputTime Limi
·
2015-11-02 11:19
list
UVA - 10420 - List of
Conquests
(排序 - qsort、STL)
UVA-10420ListofConquestsTimeLimit: 3000MSMemoryLimit: Unknown64bitIOFormat: %lld&%lluSubmit StatusDescriptionProblemBListofConquestsInput: standardinputOutput: standardoutputTimeLimit: 2secondsInActI,
u014355480
·
2015-03-22 13:00
排序
ACM
uva
UVA 10420 List of
Conquests
B-ListofConquestsTimeLimit:3000MS MemoryLimit:0KB 64bitIOFormat:%lld&%lluDescriptionInActI,LeporelloistellingDonnaElviraabouthismaster'slonglistofconquests:``Thisisthelistofthebeautiesmymasterha
HelloWorld10086
·
2014-07-21 17:00
list
uva
of
Conquests
UVA 10420 (暑假-排序、检索 -B - List of
Conquests
)
#include #include //#include #include usingnamespacestd; intstrcompare(constvoid*_a,constvoid*_b) { char*a=(char*)_a; char*b=(char*)_b; returnstrcmp(a,b); } intmain(){ constintMax=1050; intn; while(
kl28978113
·
2014-07-12 10:00
uva 10420 - List of
Conquests
题目地址:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=98&problem=1361&mosmsg=Submission+received+with+ID+11590304 题目比较简单,只需统计国家名,人名不用care。分别用java和c写了下,都A
jdflyfly
·
2014-06-24 20:00
UVa 10420 - List of
Conquests
Sorting/Searching类的题目.总体挺简单.题目要求统计每个国家出现的次数.一开始我以为国家就是题目开头的五个..边写边纳闷..怎么那么简单...后来看到输出中有个上面没有的England.....╮(╯▽╰)╭我的思路是把国家放到一个二维数组word里(话说这招屡试不爽啊..),再开一个数组num,存放国家的数目.另外开一个数组temp,读取每句话中的国家,并和word里的国家对比.
u014247806
·
2014-03-31 20:00
ACM
uva
10420
UVa 10420 - List of
Conquests
题目链接:UVa10420-ListofConquests排序问题,题目本身不难,注意一些东西。sort的cmp返回值只有两个,0或者1,分别表示小于和大于。qsort的返回值有三个,-1或者0或者1,分别表示小于,等于,大于,稳定的。所以在sort的cmp中写 returnstrcmp(_a,_b);肯定是错的,因为strcmp的返回值有三个,用qsort是可以的。#include #inclu
fobdddf
·
2014-02-27 16:00
10420 - List of
Conquests
题目:10420-ListofConquests题目大意:计算有多少个女人属于同一个国家,输出按字典序。解题思路:只需将国家名保存就可以了,之后重小到大排列,再统计重复的国家的个数,最后按顺序输出每一个不同的国家名,并给出个数。#include #include #include usingnamespacestd; constintN=80; constintL=2005; intt; st
u012997373
·
2013-12-22 20:00
UVa 10420 List of
Conquests
(STL map)
10420-ListofConquestsTimelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=98&page=show_problem&problem=1361InActI,LeporelloistellingDonnaElviraabouthisma
synapse7
·
2013-10-21 08:00
C++
map
ACM
uva
UVA10420-List of
Conquests
思路:只需比较前面国家的名称就行了,记得要排序完再进行下一步操作,这样比较方便!!!!!#include #include #include usingnamespacestd; charcname[2005][80]; charpname[2005][80]; intcompare(constvoid*a,constvoid*b){ returnstrcmp((char*)a,(char*)
u011345461
·
2013-08-12 20:00
uva 10420 List of
Conquests
(检索+排序)
ListofConquestsInput: standardinputOutput: standardoutputTimeLimit: 2secondsInActI,LeporelloistellingDonnaElviraabouthismaster'slonglistofconquests:``Thisisthelistofthebeautiesmymasterhasloved,alistI'
u011328934
·
2013-07-28 15:00
10420 - List of
Conquests
(UPDATE)
在 10420-ListofConquests的解法中,最后输出时为了保证国家名是字典序从小到大,把map的key都拷贝到vector里来进行排序;后来发现map的key默认就是按字典序从小到大的,所以那段代码是多此一举;新代码实现如下:代码:#include #include #include #include #include #include #include #include
sailtseng
·
2013-07-23 17:00
list
uva
of
10420
Conquests
10420 - List of
Conquests
题意:输入一组字符串,每行的第一个单词表示国家名,统计各个国家名出现次数,然后按国家名的字母序由小到大进行输出.思路:对存放在map里,每读入一行,就取到国家名,然后在map里递增一下;最后把国家名进行排序,按从小到大进行输出.要点:使用 sort(countries.begin(),countries.end(),less()); 进行从小到大排序.题目:http://uva.onlinejud
sailtseng
·
2013-07-23 17:00
list
uva
of
10420
Conquests
排序/查找 10420 - List of
Conquests
UVaOJRoot :: AOAPCI:BeginningAlgorithmContests(RujiaLiu) :: Volume1.ElementaryProblemSolving :: Sorting/SearchingProblemBListofConquestsInput: standardinputOutput: standardoutputTimeLimit: 2secondsInA
SIOFive
·
2013-07-09 20:00
uva 10420 - List of
Conquests
题目地址:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=98&problem=1361&mosmsg=Submission+received+with+ID+11590304 题目比较简单,只需统
249326109
·
2013-04-11 15:00
list
UVA 10420 - List of
Conquests
字符串排序。#include #include #include intcmp(constvoid*a,constvoid*b){ char*_a=(char*)a; char*_b=(char*)b; returnstrcmp(_a,_b); } intmain(){ charstr[2005][80]; intn; scanf("%d",&n
zcube
·
2013-01-04 16:00
字符串排序
UVaOJ 10420 - List of
Conquests
AOAPCI: BeginningAlgorithmContests(RujiaLiu) :: Volume1.ElementaryProblemSolving ::Sorting/SearchingDescription某个大BOSS的情人遍布世界各地。因此他有个情人表,表的每项以国家名开头,之后是情人名。给你这张表,要求统计他在各国情人的数量。TypeSorting/SearchingAnal
Ra_WinDing
·
2012-11-11 23:00
uva10420 - List of
Conquests
ProblemBListofConquestsInput:standardinputOutput:standardoutputTimeLimit:2secondsInActI,LeporelloistellingDonnaElviraabouthismaster'slonglistofconquests:``Thisisthelistofthebeautiesmymasterhasloved,a
Frankiller
·
2012-06-09 12:00
list
REST
input
each
output
10420 - List of
Conquests
这道题目也不难,就是字符串的查找与排序,用一个结构体就很简单了;#include #include structlist { charname[2000]; intnumber; }s[100000],ss; intnum; intmain() { inti,j,n,T; charstr[10000],str1[10000]; scanf("%d%*c",&T); num=0; while(T--
rowanhaoa
·
2012-06-03 16:00
uva 10420 List of
Conquests
题意:给你N个串,每个串的第一个单词表示国家,后面的M单词(M>=1)表示女人,要你找出每个国家出现了几个女人。用STL的map将国家映射成数字,然后再放到set里。#include #include #include #include #include #include usingnamespacestd; intmain() { intn,t=0; charwork1[100],work2[1
shiqi_614
·
2011-09-20 22:00
UVa 10420 List of
Conquests
UVa10420ListofConquests女孩们的名字没有什么用,用map对象记录每个国家出现的次数即可。以下是我的代码:#include#include#include#includeusing namespace std;const int kMaxn(2007);int main(){ /* freopen("data.in","r",stdin); freopen("
心如止水
·
2011-04-08 23:00
UVa 10420 List of
Conquests
/*coder:ACboydate:2010-2-25result:1ACdescription:UVa10420ListofConquests*/#include#include#include#includeusingnamespacestd;structNode{stringcountry;stringwomenName;};Nodenode[2010];intcmp(Nodea,Nodeb
ACb0y
·
2010-02-25 23:00
上一页
1
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他