博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 600A. Extract Numbers 模拟
阅读量:4654 次
发布时间:2019-06-09

本文共 2838 字,大约阅读时间需要 9 分钟。

A. Extract Numbers
time limit per test:
2 seconds
memory limit per test:
256 megabytes
input:
standard input
output:
standard output

You are given string s. Let's call word any largest sequence of consecutive symbols without symbols ',' (comma) and ';' (semicolon). For example, there are four words in string "aba,123;1a;0": "aba", "123", "1a", "0". A word can be empty: for example, the strings=";;" contains three empty words separated by ';'.

You should find all words in the given string that are nonnegative INTEGER numbers without leading zeroes and build by them new string a. String a should contain all words that are numbers separating them by ',' (the order of numbers should remain the same as in the string s). By all other words you should build string b in the same way (the order of numbers should remain the same as in the strings).

Here strings "101", "0" are INTEGER numbers, but "01" and "1.0" are not.

For example, for the string aba,123;1a;0 the string a would be equal to "123,0" and string b would be equal to "aba,1a".

Input

The only line of input contains the string s (1 ≤ |s| ≤ 105). The string contains only symbols '.' (ASCII 46), ',' (ASCII 44), ';' (ASCII 59), digits, lowercase and uppercase latin letters.

Output

Print the string a to the first line and string b to the second line. Each string should be surrounded by quotes (ASCII 34).

If there are no words that are numbers print dash (ASCII 45) on the first line. If all words are numbers print dash on the second line.

Sample test(s)
input
aba,123;1a;0
output
"123,0" "aba,1a"
input
1;;01,a0,
output
"1" ",01,a0,"
input
1
output
"1" -
input
a
output
- "a"
Note

In the second example the string s contains five words: "1", "", "01", "a0", "".

 

题意:有一个仅包含 '.' , ',' , ';' 大小写字母,数字的字符串s  (1 ≤ |s| ≤ 105)。 ',' 和 ';'为分隔符。a字符串是不为0开头的纯数字,其余的均为b字符串。空的也为b中的。具体的看样例和note

思路:暴力一遍来判断,但是在字符串的前面和后面均加一个',',这样可以更加方便判断特殊情况。

 

#include
using namespace std;char s[100010];char a[100010],b[100010];int count1[100010],count2[100010];int main(){ cin>>s; int i,j,n=0,m=0,sign,flag,len=strlen(s); sign=-1; s[len]=';'; memset(count1,0,sizeof(count1)); memset(count2,0,sizeof(count2)); for(i=0; i<=len; i++) { if(s[i]==','||s[i]==';') { if(sign+1==i) { b[m++]='*'; count2[m-1]=1; } else { flag=0; if(s[sign+1]=='0'&&(sign+2==i)) flag=1; else { if(s[sign+1]<='9'&&s[sign+1]>='1') flag=1; if(flag==1) { for(j=sign+1; j
='0')) break; } if(j
View Code

转载于:https://www.cnblogs.com/GeekZRF/p/5161131.html

你可能感兴趣的文章
Python -- pandas
查看>>
jQuery 效果 - 淡入淡出
查看>>
目标文件格式
查看>>
瑞士 -- 德语 德国 -- 德语 卢森堡 -- 德语 奥地利 -- 德语 丹麦 -- 丹麦语 挪威 -- 挪威语 爱尔兰 -- 爱尔兰语 荷兰 -- 荷兰语 比利时 -- 荷兰语...
查看>>
背景颜色设置
查看>>
推荐一款帮助负载均衡/DNS轮询服务器组使用的文件同步工具
查看>>
常用的CSS命名规则
查看>>
约数个数定理&约数和定理
查看>>
Oracle EBS数据定义移植工具:FNDLOAD
查看>>
判素数
查看>>
extjs4.1:两个combobox的联动
查看>>
百度地图瓦片工具:定义坐标
查看>>
jmeter控制器--交替控制器
查看>>
hdu 5365 Run
查看>>
jap _spring _maven
查看>>
IIS principle
查看>>
Oracle 如何对中文字段进行排序
查看>>
第七章 数组实验
查看>>
003_ElasticSearch详解与优化设计
查看>>
windows hosts
查看>>