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
10905
2018 跑步记录
403.42018+10203.102018+10303.182018+10403.252018+10504月:404.12018+10604.72018+10704.142018+10804.302018+
10905
万事皆成
·
2024-02-13 02:53
dss 启动报错 首次上传资源失败
executefailed,reason:org.apache.linkis.httpclient.exception.HttpClientResultException:errCode:
10905
,desc
gs80140
·
2023-09-07 10:05
各种问题
java
DataSphere
linkis
hadoop
大数据
2019-04-24
我在这个世界上的美好生活还有
10905
天。1、比学习:凡事都有两面性,世间所有万物都有阴和阳之分,有时候坏事会变成好事,有时候好事又会变成坏事。凡事讲的是合理。
18663120185
·
2020-07-06 22:14
【Apple苹果设备刷机】ipad已停用,iTunes无法联系网络等问题
具体教程如下链接:https://www.i4.cn/news_detail_
10905
.html温馨提示:1、如果您的设备处于停用状态,那么它无法连接爱思
XiaoGongWei18
·
2020-06-30 01:42
生活就是这么拽
第
10905
天今天是星期一,新一周的新一天,明媚的阳光携带着16摄氏度的清风徐徐吹来。
嘴写未来
·
2020-02-28 12:32
[kuangbin带你飞]专题十二 基础DP1 B - Ignatius and the Princess IV
Java/Others) MemoryLimit:65536/32767K(Java/Others)TotalSubmission(s):25818 AcceptedSubmission(s):
10905
ProblemDescription"OK
Amaswz
·
2016-05-10 18:00
Uva
10905
Children's Game
题意:给定n个正整数,求他们能拼接成的最大整数是多少。白书诚不欺我,果然wa了好久....#include #include #include #include usingnamespacestd; intn; strings[51]; boolcamp(stringa,stringb) { returna+b>b+a; } intmain() { cin.sync_with_stdio(fals
u014258433
·
2016-04-24 23:00
ACM
贪心
易错
UVA
10905
(p79)----Children's Game
#include #definedebu usingnamespacestd; intn; stringst[55]; intcmp(stringst1,stringst2) { returnst1+st2>st2+st1; } intmain() { #ifdefdebug freopen("in.in","r",stdin); #endif//debgu ios::sync_with_stdi
wang2147483647
·
2016-03-10 21:00
Uva
10905
Children's Game (C++String的运运用呀...)
.Children'sGameTimeLimit: 3000MS MemoryLimit: Unknown 64bitIOFormat: %lld&%lluSubmit StatusDescription题意:给定n个正整数,把它们连接成一个最大的整数.比如,123,124,556,90有24种连接方法,最大的结果为9056124123方法:原来本来打算用strcmp排序,后来发现错了,如9,90
hurmishine
·
2016-03-10 20:00
game
Childrens
Uva10905
uva
10905
题目大意:给出的数字中组成一个最大的思路:按a+b>b+a排序然后直接将排完序的字符号输出就可以了。代码:#include usingnamespacestd; #include #include #include stringnum[55]; intcmp(stringa,stringb){ //if(a[i]!=b[i]) returna+b>b+a; } intmain(){ in
vv494049661
·
2015-12-26 20:00
UVA
10905
Children's Game 孩子的游戏 贪心
题意:给出N个数,要求把它们拼凑起来,让得到的数值是最大的。 只要分别比较两个数放前与放后的值的大小,排序后输出就可以了。 比如123和56,就比较12356和56123的大小就行了。 写一个比较函数,然后用sort调用就行了。 刚开始时用long long做,每次比较都让数相连,然后比较大小,后来发现数据好像会很暴力,即使longlong也不够大。 考虑到两个数相连后两种情况长度都一样
·
2015-11-13 02:56
children
UVA
10905
- Children's Game
这道题是要我们将给的数字进行接龙成一个很长的数字,然后找出其中最大的数字。所以排序不是 比较两个数字的大小,而是比较两个数字按照前后顺序接龙获得的数字的大小,因为数字可能很大 所以用数组,借助strcmp函数来排序。最后再将排序后的数组输出。这次熟悉了下strcat函数,看 来蛮好用。 #include<stdio.h>#include<stdlib.h>#inc
·
2015-11-13 01:21
children
uva
10905
题目: 输入一串数字,求用这些数字能组成最大的整数 分析: 可以用sort()函数比较排序,比较方式为 int cmp(string a,string b){return a+b>b+a;}即可 #include <iostream> #include <algorithm> #include <string>
·
2015-11-13 00:00
uva
uva
10905
Children's Game (排序)
题目连接:uva
10905
Children's Game 题目大意:给出n个数字, 找出一个序列,使得连续的数字组成的数值最大。
·
2015-11-12 17:19
children
UVA
10905
- Children's Game
4th IIUC Inter-University Programming Contest, 2005 A Children’s Game Input: standard inputOutput: standard output Problemsetter: Md. Kamruzzaman There
·
2015-11-12 11:36
children
UVa
10905
Children's Game
注意!这不是单纯的字典序排序,比如90、9,应该是990最大 对字符串排序蛋疼了好久,因为别人说string很慢,所以一直没有用过。 看别人用string还是比较方便的,学习一下 对了,这里的cmp函数写的还是很简洁的,比我写的要好得多 1 #define LOCAL 2 #include <iostream> 3 #include <c
·
2015-11-02 11:43
children
UVA
10905
Children's Game
技巧挺强的。 CODE: #include <iostream> #include <cstdlib> #include <cstring> #include <cstdio> #include <algorithm> using 
·
2015-10-31 17:53
children
uva
10905
Children's Game
继续复习基础算法 题意,给n个数字,将它们重新排序得到一个最大的数字,好像给出123 456 789 拼为 789456123 最大 这题可以算是一个排序题,不过排序的规则有讲究 如果想用字典序排序,显然错了,好像999123 999 , 按字典序排序999123在前面,得到的数字为999123999 , 显然没有不够999999123 大 有两种不同的思想解这题 1.处
·
2015-10-31 14:40
children
UVa
10905
: Children's Game
这真是一道有趣的题目,不知道别人怎么想,总之我觉得这题真的很有意思,值得一做。先附上题目: There are lots of number games for children. These games are pretty easy to play but not so easy to make. We will discuss about an interesting ga
·
2015-10-31 10:15
children
UVa
10905
- Children’s Game
There are lots of number games for children. These games are pretty easy to play but not so easy to make. We will discuss about an interesting game here. Each player will be given N positive integer.
·
2015-10-28 08:13
children
UVa
10905
- Children's Game(求多个正整数排列后,所得的新的数字的极值)
4thIIUCInter-University Programming Contest, 2005 A Children’s Game Input: standard input Output: standard output Problemsetter: Md. Kamruzzaman There are lots of number games
·
2015-10-27 15:31
children
10905
- Children's Game
4th IIUC Inter-University Programming Contest, 2005 A Children’s Game Input: standard input Output: standard output Problemsetter: Md. Kamruzzaman There
·
2015-10-27 15:01
children
UVA
10905
Children's Game
UVA_
10905
这个题实际上也是个排序的题目,只不过排序的标准比较特殊,但有一点是不变的,如果任意局部是有序的,那么全局一定是有序的。
·
2015-10-21 10:52
children
UVA -
10905
Children's Game
V_judge上的题目 UVA-
10905
Children'sGame与PAT1038是一样的题目,或者说1038要稍微麻烦一点点,题解也可以通用,看到了就顺便做一下。
sinat_29278271
·
2015-09-19 09:00
排序
贪心
uva
10905
- Children's Game
题意:求n个数字连接所成的最大的那个数字,实际上就是n个数字对应字符串的一个字典序,两个数字字符串a和b,要么a+b>b+a,要么a+b#include#includeusingnamespacestd;stringstr[55];boolcmp(stringa,stringb){returna+b>b+a;}intmain(){intn;while(cin>>n&&n){for(inti=0;i
不许动我的松子
·
2015-08-09 20:37
算法竞赛入门经典
uva
10905
Children's Game(排序或者有点贪心)
今天配置vim没有成功,老是显示什么error,唉,其实之前成功过的,只不过是重装了dev,然后就变了,可能环境变量的问题,但是我都改了的啊,以后再调吧。。。这道题其实不是我想出来的看的题解,又看题解了。。。好吧,既然看了题解就得好好掌握才是。用到了我刚刚在c++primer里面学的string类,挺好用的,以后我准备写程序尽量用c++内容,多练练。。又加深理解了qsort调用的cmp函数,它的两
sinat_22659021
·
2015-08-02 23:00
uva
10905
Children's Game 儿童游戏
题目大意:给你一堆正整数,让你把这些数连接起来,找出连接后最大的那个…思路见代码下方(这题挺sb的,别想多了)#include #include #include #include #include #include usingnamespacestd; strings[51]; boolcmp(conststring&s1,conststring&s2) { if(s1==s2) returnt
·
2015-07-13 10:00
【索引】General Problem Solving Techniques:Examples:Intermediate
TrainingGuide(RujiaLiu)Chapter1.AlgorithmDesign::GeneralProblemSolvingTechniques:Examples:Intermediate
10905
kl28978113
·
2015-04-19 15:00
UVA -
10905
Children's Game
题目大意:给n个数字,将它们重新排序得到一个最大的数字,好像给出123456789拼为789456123最大解题思路:这题可以算是一个排序题,不过排序的规则有讲究如果想用字典序排序,显然错了,好像999123999,按字典序排序999123在前面,得到的数字为999123999,显然没有不够999999123大 一种简单的思想,假设我们有n个串,排序了,得到了最优序列,那么我们任意找两块,A和B,
kl28978113
·
2015-02-20 00:00
UVA
10905
Children's Game
4thIIUCInter-University ProgrammingContest,2005AChildren’sGameInput:standardinputOutput:standardoutputProblemsetter: Md. KamruzzamanTherearelotsofnumbergamesforchildren.Thesegamesareprettyeasytoplaybu
jtjy568805874
·
2015-02-17 21:00
uva
贪心
uva
10905
Children's Game
#include"stdio.h" #include"string" #include"algorithm" #include usingnamespacestd; intcmp(stringa,stringb) { returna+b>b+a; } intmain() { intn,i; stringstr[55]; while(~scanf("%d",&n)) { if(n==0)brea
xinag578
·
2015-02-04 19:00
UVA -
10905
- Children's Game (简单排序)
UVA-
10905
Children'sGameTimeLimit: 3000MS MemoryLimit: Unknown 64bitIOFormat: %lld&%lluSubmit StatusDescription4thIIUCInter-University
u014355480
·
2014-12-09 20:00
Algorithm
C++
String
ACM
uva
【索引】Volume 4. Algorithm Design
AOAPCI:BeginningAlgorithmContests(RujiaLiu)Volume4.AlgorithmDesignUVA
10905
-Children'sGame10763-ForeignExchange10132
HelloWorld10086
·
2014-10-23 20:52
索引
【索引】Volume 4. Algorithm Design
AOAPCI:BeginningAlgorithmContests(RujiaLiu)Volume4.AlgorithmDesignUVA
10905
-Children'sGame10763-ForeignExchange
HelloWorld10086
·
2014-10-23 20:00
索引
UVA
10905
- Children's Game
题目大意:给出n个数字,找出一个序列,使得连续的数字组成的数值最大。解题思路:排序,很容易想到将数值大的放在前面,数值小的放在后面。可是,该怎么判断数值的大小(判断数值大小不能单单比较两个数的大小,比如遇到:1、10的情况)。其实,判断一个不行,那就将两个合在一起考虑就可以了(就是比较110合101的大小来普判断1放前面还是10放前面)#include #include #include usin
kl28978113
·
2014-09-13 21:00
UVA -
10905
Children's Game(贪心)
4thIIUCInter-University ProgrammingContest,2005AChildren�sGameInput:standardinputOutput:standardoutputProblemsetter: Md. KamruzzamanTherearelotsofnumbergamesforchildren.Thesegamesareprettyeasytoplaybu
HelloWorld10086
·
2014-09-04 18:00
game
uva
Childrens
10905
UVA
10905
Children's Game
题意:给你n个正整数,把它们连接成一个最大的整数,如:123,124,56,90有24种连接方法,最大结果为:9056124123。分析:贪心方法,排序处理,排序时要注意长度不同的数,短的那个与长的前几位全相等,例如:734,7346方法一:共两种情况:1是7347346;2是7346734,只需比较它们两个的大小即可。#include #include #include #include #in
Houheshuai
·
2014-08-12 13:00
UVA
10905
- Children's Game
题目链接 题意:给定n个正整数,你的任务就是把他们连成一个最大的整数,输出最大的数思路:贪心排序,将能组合而成的较大的放前面#include #include #include #include usingnamespacestd; constintMAXN=55; strings[MAXN]; intcmp(conststring&a,conststring&b){ return(a+
u011345461
·
2014-08-08 21:00
uva-
10905
Children's Game(贪心)
题目:uva-
10905
Children'sGame(贪心)题目大意:给出N个正整数,问将这N个整数连接后得到的最大的数。
u012997373
·
2014-07-28 09:00
【索引】General Problem Solving Techniques:Examples:Intermediate
TrainingGuide(RujiaLiu)Chapter1.AlgorithmDesign::GeneralProblemSolvingTechniques:Examples:Intermediate
10905
u011328934
·
2014-07-23 20:00
UVA
10905
(为什么)
自定义比较函数就可简单解决。刚开始的时候有一个小问题就一直run time error,后来改了之后就过了,不明白为什么。希望路过的大神赐教。/** **author:Skylon** ╭︿︿︿╮ {/AC/} ((OO)) ︶︶︶ **** **题** **2014年月日** **/ #include #include #include #include #include #include #i
u013889450
·
2014-07-21 17:00
error
sort
time
run
自定义比较函数
uva
10905
link:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1846题目大意:给出n个数,让他们排列组成一个新的整数,求组成的最大整数。思路:对每个数排序,重写cmp函数。#include #include #include #include #include
ocgcn2010
·
2014-07-16 00:00
uva
10905
Children's Game
贪婪法,先排序。数字好像超过了一般整数的大小,数组稍微开大点。 #include #include #include charnum[55][200]; intcmp(constvoid*a,constvoid*b){ char*aa=(char*)a; char*bb=(char*)b; charm[400]={0}; charn[400]={0}; strcat(m
jdflyfly
·
2014-06-24 20:00
UVa
10905
- Children's Game
传送门UVa
10905
-Children'sGame参考了GooMaple的解题报告。一开始也想用比较字符串的方法,但是只想到了单个进行比较。
u014247806
·
2014-06-01 17:00
ACM
uva
UVa
10905
- Children's Game
题目:给你一些数字,让你将他们组成一个最大的数字。分析:简单题。直接按字符串排序即可。#include #include #include #include #include usingnamespacestd; stringnumber[51]; intcmp(stringa,stringb) { returna+b>b+a; } intmain() { intN; while(cin>
mobius_strip
·
2014-03-31 02:00
[排序]Children's Game uva
10905
4th IIUC Inter-University ProgrammingContest,2005AChildren’sGameInput:standardinputOutput:standardoutputProblemsetter: Md. KamruzzamanTherearelotsofnumbergamesforchildren.Thesegamesareprettyeasytoplay
u011194165
·
2014-02-19 12:00
排序
uva
10905
Children's Game
贪婪法,先排序。数字好像超过了一般整数的大小,数组稍微开大点。 #include<stdio.h> #include<stdlib.h> #include<string.h> char num[55][200]; int cmp(const void *a, const void* b) { char *aa
249326109
·
2014-01-12 10:00
children
UVa
10905
- Children's Game(求多个正整数排列后,所得的新的数字的极值)
4thIIUCInter-UniversityProgrammingContest,2005AChildren’sGameInput:standardinputOutput:standardoutputProblemsetter:Md.KamruzzamanTherearelotsofnumbergamesforchildren.Thesegamesareprettyeasytoplaybutno
庞老板
·
2014-01-02 18:55
UVa
10905
Childrens
Game
贪心算法
递归与分治
《算法竞赛入门经典》学习笔记
UVa
10905
- Children's Game(求多个正整数排列后,所得的新的数字的极值)
4thIIUCInter-UniversityProgrammingContest,2005AChildren’sGameInput:standardinputOutput:standardoutputProblemsetter:Md.KamruzzamanTherearelotsofnumbergamesforchildren.Thesegamesareprettyeasytoplaybutno
code_pang
·
2014-01-02 18:00
game
uva
Childrens
10905
uva
10905
同一思路的两种做法,前一种WA,后一种AC
这道题应该算一道普通的排序吧,实际上就是另一种形式地比大小,自己最开始是用int型存,后来觉着不行,改用long,结果还是WA,这是第一个程序。 第二个程序是改用string处理,确实比int方便很多,在运算符重载那里体现就非常明显。 这个题目用到了之前总结过的结构体加入优先级队列需要重载运算符,之所以写成结构体是因为我不知道直接将string加入优先级队列时怎么写比较函数。。。⊙﹏⊙b 通
·
2013-11-14 20:00
uva
上一页
1
2
下一页
按字母分类:
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
其他