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
UVa1585
UVA1585
- Score
(一道水题,做完后才发现......)#includeusingnamespacestd;strings;intcnt,n,sum;intmain(){cin>>n;for(inti=1;i>s;cnt=sum=0;for(inti=0;i
仰天雄
·
2024-02-13 23:11
UVA
算法
c++
数据结构
开发语言
得分(Score, ACM/ICPC Seoul 2005,
UVa1585
)
给出一个由O和X组成的串(长度为1~80),统计得分。每个O的得分为目前连续出现的O的个数,X的得分为0。例如,OOXXOXXOOO的得分为1+2+0+0+1+0+0+1+2+3。思路:直接从首至尾遍历串,设置一个变量t标记O的个数,如遇到X直接清零。#include#include#includeusingnamespacestd;#defineMAXN81intmain(){intt=0,su
复习你给的温柔
·
2023-12-05 05:31
每天一道算法题
c++
算法
开发语言
算法竞赛入门经典(第2版)紫书 第三章数组和字符串 习题
文章目录习题3-1得分(Score,ACM/ICPCSeoul2005,
UVa1585
)题目描述问题分析习题3-2分子量(MolarMass,ACM/ICPCSeoul2007,UVa1586)题目描述问题分析代码习题
阿怪zz
·
2022-03-18 10:21
算法竞赛入门经典(第2版)紫书
得分(Score,ACM/ICPC Seoul 2005,
UVa1585
)
题目得分(Score,ACM/ICPCSeoul2005,
UVa1585
)给出一个由O和X组成的串(长度为1-80),最多有十个串,统计得分。
陌小衫
·
2022-02-20 10:17
刘汝佳《算法竞赛入门经典(第二版)》习题(三)
刘汝佳《算法竞赛入门经典(第二版)》第三章习题(一)习题3-1得分(ACM/ICPCSeoul2005,
UVa1585
)给出一个由O和X组成的串(长度为1~80),统计得分。
___Blue_H
·
2020-08-26 16:49
题目
UVA1585
Score
题目链接采用getchar(),每次读取一个字符注意:getchar()可以读取换行符,需要注意一下,同时换行符也可以用来作为结束标志AC代码#includeusingnamespacestd;intmain(intargc,char*argv[]){intc,t=0,sum=0;intN;cin>>N;getchar();//读取换行符while(N--){sum=0;//记录分数t=0;//记
krolem
·
2020-08-24 13:41
UVA
C++版 -
UVa1585
Score - 题解
C++版-UVa1585Score-题解《算法竞赛入门经典(第二版)》习题3-1得分(ACM/ICPCSeoul2005,
UVa1585
)问题描述:给出一个由O和X组成的串(长度为1~80),统计得分。
weixin_34378045
·
2020-08-10 23:51
算法竞赛入门经典第二版第三章习题
习题3-1得分
UVa1585
大致就是设置一个变量记录到当前为止的连续的O的数量,碰到X就变0,水题。
fanesemyk
·
2020-07-30 12:22
紫书习题集锦
UVA1585
(Score)
UVA1585Score//此版本只支持一组数据输入#include#definemaxn85intmain(){intscores=0;charc;intserial=0;while(scanf_s("%c",&c)){if(c=='O'){serial++;scores+=serial;}elseserial=0;continue;}printf("得分为:%d",scores);system
Gaolex
·
2019-11-01 10:02
算法竞赛入门经典(第二版)3-1得分
UVA1585
#include#include#include#definemaxn85main(){chars[maxn];while(1){scanf("%s",s);intlen=strlen(s);printf("%d\n",len);intsum=0;intkey=0;for(inti=0;i
子枫与我
·
2019-10-18 20:00
UVA1585
#includeintmain(){intn,temp=0;//temp是一个标志变量,标志上一个字符是不是Ointscore=0;charc;scanf("%d",&n);while(n--){getchar();while(scanf("%c",&c)&&c!='\n'){if(c=='O'){if(temp){temp+=1;score+=temp;}else{score+=1;temp=1
Green.Arrow
·
2018-12-22 11:53
C语言
Uva1585
#include#includeusingnamespacestd;intmain(){inta[10];intf[10];intn,ans=1;cin>>n;for(inti=0;i>a[i];f[i]=1;}for(inti=0;i
北里五井
·
2018-04-11 17:19
刷题
【UVa - 1585】
习题3-1得分(Score,ACM/ICPCSeoul2005,
UVa1585
)给出一个由O和X组成的串(长度为1~80),统计得分。每个O的得分为目前连续出现的O的个数,X的得分为0。
X2alchemist
·
2017-01-30 19:16
【UVa
-
Rujia
Liu】
UVa1585
得分 习题3-1
3-1「
UVa1585
」得分给出一个由O和X组成的串(长度为1~80),统计得分。
hhallelujah
·
2017-01-25 21:01
习题3-1 得分
UVa1585
算法竞赛入门经典(第2版)第3章数组和字符串习题3-1得分
UVa1585
感悟。1、直接看英文原题的输入输出样例。
mrcrack
·
2016-07-22 16:53
数组和字符串
[刷题]算法竞赛入门经典 3-1/
UVa1585
3-2/UVa1586 3-3/UVa1225
原文链接:http://www.cnblogs.com/xienaoban/p/6798115.html书上具体所有题目:http://pan.baidu.com/s/1hssH0KO(我也是在网上找到的pdf,但不记得是从哪里搜刮到的了,就重新上传了一遍)PS:第一次写博客分享我的代码,不知道我对csdn的使用姿势对不对。想不出来要说些什么哈o(^▽^)o,那就直接开工,先写一篇试试。题目:算法
weixin_30287169
·
2016-07-15 20:00
UVa1585
Score
《算法竞赛入门经典(第2版)》作者:刘汝佳第三章习题3-1输入O和X组成的串,统计得分https://uva.onlinejudge.org//index.php?option=com_onlinejudge&Itemid=8&category=827--------------------------------------------------E3-1.cpp----------------
Anntonnia
·
2016-03-30 16:50
ACM/IoP
Uva1585
Score (简单统计)
ScoreDescriptionThereisanobjectivetestresultsuchas``OOXXOXXOOO".An`O'meansacorrectanswerofaproblemandan`X'meansawronganswer.Thescoreofeachproblemofthistestiscalculatedbyitselfanditsjustpreviousconsecu
AC_Dreameng
·
2016-03-13 20:23
ACM_基础题(水题)
算法竞赛入门经典(第二版)
UVa
ACM_HDU刷题录
Uva1585
Score (简单统计)
ScoreDescriptionThereisanobjectivetestresultsuchas``OOXXOXXOOO".An`O'meansacorrectanswerofaproblemandan`X'meansawronganswer.Thescoreofeachproblemofthistestiscalculatedbyitselfanditsjustpreviousconsecu
hurmishine
·
2016-03-13 20:00
score
UVa1585
Uva1585
Score
基本上采用了模拟的方法,就是每到一个'O',就开始统计以此为起点的这串连续的'O'能的几分。 另外有一些注意的地方写在代码的注释里 #include <iostream> #include <cstring> #include <cstdio> using namespace std; const int MAXN = 80 + 10;
·
2015-11-12 19:33
core
UVa1585
Score
#include <iostream> #include <cstdio> #include <cstring> using namespace std; int main() { char s[100]; int i,j,n,ans; cin>>n; getchar(); while (n
·
2015-11-02 15:00
core
UVa1585
终于知道自己错在哪儿了,题目给的都是大写的字母O还有X,而我一直用的是小写的去判断,下面是修改过的通过的。 #include<stdio.h> int main() { int i,t; char a[100]; scanf("%d",&t); while(t--) { scanf("%s",&am
·
2015-11-01 15:58
uva
UVa1585
修改版
#include<stdio.h> int main() { int i,k=-1; char a[100]; while(scanf("%s",&a)!=EOF) { int sum=0; for(i=0;a[i]!='\0';i++) { if((a[i]=='o
·
2015-11-01 15:57
uva
UVa1585
Score
#include <stdio.h>int main(){ int T, O, score; char str[81], *p; scanf("%d", &T); while (T--) &n
·
2015-06-20 23:00
core
uva1585
大水题#include #include #include #definemaxn81 usingnamespacestd; intmain() { chars[maxn]; intT; cin>>T; while(T--) { cin>>s; intsum=0,n=0; for(inti=0;i
yexiaohhjk
·
2015-04-03 20:00
水题
UVA 1585
UVA1585
虽然为水题,但是我的算法还是比较一般。思想是切分单词的思想,确定切分开始条件,结束条件,在[b,e)之间就是所得单词,因为单词以X作为间隔,为了保证算法正确性,需要在末尾添加X。
f(sixleaves) = sixleaves
·
2015-02-05 09:00
算法竞赛入门经典(第2版)习题3-1 得分 Score
UVa1585
这题是开胃小菜,顺利做出。#include#includechars[85];intmain(){intT,tot,cnj;scanf("%d",&T);while(T--){memset(s,0,sizeof(s));scanf("%s",s);tot=0;cnj=0;for(inti=0;i
_Arc
·
2014-07-10 11:07
算法竞赛入门经典(第2版)
UVa1585
#include #include chars[100]; intmain(){ intn; scanf("%d",&n); while(n--) { intm=0,t=0,i=0; scanf("%s",s); while(i<=strlen(s)-1) { if(s[i]=='X')m=0; else { m++; t+=m; } i++; } printf("%d\n",t); } retu
sinat_17231979
·
2014-07-04 10: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
其他