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
487--3279
755 -
487--3279
487-3279Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT-
zzyazzy
·
2020-08-12 18:21
UvaOj
UVA - 755
487--3279
题目大意:输入的每行都是一个电话号码,字母可以化为数字,多余的-可以删去,输出出现>1次的号码以及出现的次数。解题思路:读入,化为电话,排序,循环与后一个号码比较,出现多于一次的就输出。TLE了好久,两个for循环对比效率太低qwq#include#include#include#include#includeusingnamespacestd;charstr[500000][50];charph
Ziiyan
·
2020-08-12 18:34
UVA
排序检索
UVa 755 -
487--3279
又是一篇血泪史.这个题目和POJ1002是差不多的,先前已经做过一遍大概半个小时后就完成了..但是以为跟POJ上的一样,要处理Q和Z..就又折腾了一些时间.折腾来折腾去不管怎么提交都是WA...推敲了好几遍我的思路,确认是没有问题的..于是就去睡觉了..但是一道题目没解决..觉也睡不好.于是早上六点就醒了,又重新看了一遍程序.还是没有头绪,总感觉输出有问题..于是又看了好几遍,才发现循环输出的时候
IceIceBear
·
2020-08-12 18:05
UVa
String
uva 755
487--3279
(字母与数字处理)
题意是给一串字母与数字混合的字符串,每个字母有对应的数字,输入一串,要求判断重复出现的数字。以前在usaco上做过类似的题目,那个时候说的是手机九宫格的摁键。代码:#include#include#include#includeusingnamespacestd;intwords[26]={2,2,2,3,3,3,4,4,4,5,5,5,6,6,6,7,7,7,7,8,8,8,9,9,9,9};i
AlmostFree
·
2020-08-12 18:29
字符串
UVa 755 / POJ 1002 / East Central North America 1999
487--3279
(排序)
755-487--3279Timelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=98&page=show_problem&problem=696http://poj.org/problem?id=1002Businessesliketohavememor
synapse7
·
2020-08-12 17:47
UVa
POJ
uva 755 (
487--3279
)排序
这是一简单的排序,之所以把这道题放上面呢,是因为我在这道题上实在wa太多了,wa了7次,中间找出来个错误,就是在倒数第一个和倒数第二个相等的情况下我没有输出他们的个数,改正后还是wa,最后我发现原来是每组数据之间输出一个空行。。。。。坑了我好久,一直以为是每组后面都有空行。。。放代码:#include#include#include//chara[100005];chara[100005][100
时光爱客
·
2020-08-12 17:00
杂题
UVa 755
487--3279
DescriptionBusinessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT
ahonn
·
2020-08-12 16:24
Map
ACM解题报告
排序与检索
UVa_755 -
487--3279
Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT-GLOP.Somet
~随风而逝~
·
2020-08-12 16:02
1.3
排序/搜索
uva 755 -
487--3279
487-3279Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT-GL
滑头鬼之亨
·
2020-08-12 16:54
UVa 11292 - The Dragon of Loowater
Solution//UVaOJ755//
487--3279
//byACodeRabbit#incl
Ra_WinDing
·
2020-08-02 17:00
ICPC-report
UVaOJ 755 -
487--3279
AOAPCI:BeginningAlgorithmContests(RujiaLiu)::Volume1.ElementaryProblemSolving::Sorting/SearchingDescription一个电话号码,有不同的表示方式。输入不同方式表示的电话号码。输出所有出现超过一次的电话号码及其出现频率。TypeSorting/SearchingAnalysis利用STL,轻松加愉快。
Ra_WinDing
·
2020-08-02 17:00
ICPC-report
uva 755 -
487--3279
1#include 2#include 3#include 4#include 5#include 6#include 7usingnamespacestd; 8 9constcharkTable[]="2223334445556667Q77888999Z"; 10intmain() 11{ 12intT; 13cin>>T; 14boolfirst_output(tr
小小泽
·
2016-01-26 17:00
UVA 755
487--3279
分析:这个题就有点难度了,设置一个常量数组必不可少,神器记录每个电话号码出现的次数即可。UVA的题的格式真是让人一醉再醉,一跪再跪,空行,一定要读懂题意,看明白空行所在的位置。。。WA数次,该死的空行#include #include #include #include #include #include #include usingnamespacestd; intre[26]={2,2,2,
qq_32036091
·
2015-12-21 06:00
uva
755
487--3279
755 -
487--3279
#include<stdio.h>#include<stdlib.h>#include<string.h>char tel[100],telephone[100010][100];int cmp(const void *_a,const void *_b){ char *a=(char *)_a; char *b=(char *)_b;&nb
·
2015-11-11 06:56
开篇,UVA 755 && POJ 1002
487--3279
(Trie + DFS / sort)
博客第一篇写在11月1号,果然die die die die die alone~ 一道不太难的题,白书里被放到排序这一节,半年前用快排A过一次,但是现在做的时候发现可以用字典树加深搜,于是乐呵呵的开始敲了,后来被卡了两天,一直以为算法错了,最后发现是输出答案时忘了回溯,这问题之前没怎么注意过,也算不小的收获。 字典树A了之后换sort来写,没想到快排效率更高,时间减少了一半,在POJ上A了之
·
2015-11-08 16:08
sort
uva 755 (
487--3279
)排序
这是一简单的排序,之所以把这道题放上面呢,是因为我在这道题上实在wa太多了,wa了7次,中间找出来个错误,就是在倒数第一个和倒数第二个相等的情况下我没有输出他们的个数,改正后还是wa,最后我发现原来是每组数据之间输出一个空行。。。。。坑了我好久,一直以为是每组后面都有空行。。。放代码:#include #include #include //chara[100005]; chara[100005]
sinat_22659021
·
2015-06-06 17:00
uva 755 -
487--3279
题目Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT-GLOP.Som
面码
·
2014-08-21 14:00
ACM
uva
755
755 -
487--3279
487-3279 Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT
zzyafyj
·
2014-08-14 15:00
C++
字符串
Uva 755
487--3279
487-3279 Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT-
HelloWorld10086
·
2014-07-23 13:00
uva
487--3279
UVa 755 -
487--3279
又是一篇血泪史.这个题目和POJ1002是差不多的,先前已经做过一遍大概半个小时后就完成了..但是以为跟POJ上的一样,要处理Q和Z..就又折腾了一些时间.折腾来折腾去不管怎么提交都是WA...推敲了好几遍我的思路,确认是没有问题的..于是就去睡觉了..但是一道题目没解决..觉也睡不好.于是早上六点就醒了,又重新看了一遍程序.还是没有头绪,总感觉输出有问题..于是又看了好几遍,才发现循环输出的时候
u014247806
·
2014-03-30 13:00
ACM
uva
755
755 -
487--3279
题目:755-487--3279题目大意:找相同的电话号码解题思路:将字母转换成数字,进行排序,最后统计输出。注意用scanf(“%d‘")后要接受一下数字后的回车,再接受空白行,后面的也一样。还有字符类型的数据大小和数字不一样,要进行转换(加减’0‘)。如果和我一样用字符-’A‘的要注意,没有Q,所以到R之后的字符减了A还要减一。#include #include #include const
u012997373
·
2014-01-01 21:00
UVa 755 / POJ 1002 / East Central North America 1999
487--3279
(排序)
755-487--3279Timelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=98&page=show_problem&problem=696http://poj.org/problem?id=1002Businessesliketohavememor
synapse7
·
2013-10-21 14:00
C++
ACM
poj
uva
POJ 1002 UVA 755
487--3279
电话排序 简单但不容易的水题
题意:给你许多串字符串,从中提取电话号码,输出出现复数次的电话号码及次数。以下是我艰难的AC历程:(这题估计是我刷的题目题解次数排前的了。。。)题目不是很难理解,刚开始想到用map,但stl的map不是很放心,怕超时。于是放心的用数组敲了。(事实证明我放心过头了)刚开始在Vjugde里面提交老SE,我还以为uva又挂了,最近各种挂啊。。。后来又刷了一题过来提交,还是SE。某大神说这题uva完全挂了
·
2013-07-31 19:00
poj
755 -
487--3279
(未AC)
注:由于UVa服务器原因.这题提交时总是提示"Submissionerror",在网上找了别人的答案提交也总是这个结果,只能过一段进间再看看能不能AC了.题意:读入按不同格式存储的电话号码,把它们都转成标准电话号码xxx-yyyy的格式,然后把出现次数大于1的电话号码及其出现次数都输出来.若没有出现次数大于1的电话号码,就输出: Noduplicates.思路:每读入一个电话码码,就按以下操作把它
sailtseng
·
2013-07-24 18:00
755
487--3279
UVa 11292 - The Dragon of Loowater
Solution//UVaOJ755 //
487--3279
//byACodeRabbi
Ra_WinDing
·
2012-12-04 23:00
UVaOJ 755 -
487--3279
AOAPCI: BeginningAlgorithmContests(RujiaLiu) :: Volume1.ElementaryProblemSolving ::Sorting/SearchingDescription一个电话号码,有不同的表示方式。输入不同方式表示的电话号码。输出所有出现超过一次的电话号码及其出现频率。TypeSorting/SearchingAnalysis利用STL,轻松
Ra_WinDing
·
2012-11-23 19:00
uva 755 -
487--3279
487-3279 Businessesliketohavememorabletelephonenumbers.Onewaytomakeatelephonenumbermemorableistohaveitspellamemorablewordorphrase.Forexample,youcancalltheUniversityofWaterloobydialingthememorableTUT-
Frankiller
·
2012-06-11 20:00
755
487--3279
#include <stdio.h> #include <string.h> #include <ctype.h> #include <stdlib.h> #define MAXN 100000 char dir[MAXN+10][10]; char line[1000]; //数组实现巧妙转换 char one[]="ABCDEFGHIJ
lianxiangbus
·
2012-01-15 00:00
755
487--3279
(***)
思路:一次排序,一次推移,分步实现#include #include #include #include #defineMAXN100000 chardir[MAXN+10][10]; charline[1000]; //数组实现巧妙转换 charone[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; chartwo[]="2223334445556667N77888999N"
lhshaoren
·
2012-01-15 00:00
uva 755
487--3279
题意:给你字母对应的数字,和包含字母与数字的字符串,要你把它们转化成标准格式(即只包含数字且数字中间含‘-’),然后输出有重复出来的,且输出它们的重复次数。要注意的是,可以出现全部是0的字符串,还有边界的处理也要小心(比较最后一个和倒数第二个也相同的情况)。#include #include #include #include usingnamespacestd; intchange[26]={2
shiqi_614
·
2011-09-22 23:00
UVa 755
487--3279
UVa755487--3279注意输出空格时不能使用ends,否则会WA。就在我对这题感到无比绝望的时候,把ends改成"",AC。用map很轻松就可以完成该题。以下是我的代码:#include#include#include#include#include#includeusing namespace std;const char kTable[]="2223334445556667777888
心如止水
·
2011-04-11 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
其他