Educational Codeforces Round 2 A.Extract Numbers(模拟)

Educational Codeforces Round 2A:http://codeforces.com/contest/600/problem/A


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 string s).

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", "".



题目大意:给一个串,分别找出数字串和字符串(含空串),最后先输出数字串,在输出字符串,串间用‘,’隔开

直接模拟即可,注意整数不含前导0


#include <cstdio>
#include <cstring>

using namespace std;

int sLen,pre,numLen,chLen,cur;
char s[100005],num[100005],ch[100005];
bool isNum,numEmp,chEmp;

int main() {
    while(1==scanf("%s",s)) {
        sLen=strlen(s);
        s[sLen]=',';
        numLen=chLen=pre=cur=0;
        isNum=numEmp=chEmp=true;
        while(cur<=sLen) {
            if(s[cur]==','||s[cur]==';') {
                if(cur==pre) {//如果是空串
                    chEmp=false;
                    ch[chLen++]=',';
                }
                else {
                    if(isNum&&(cur==pre+1||s[pre]!='0')) {//如果全为数字并且不含前导0,则为数字
                        numEmp=false;
                        strncpy(num+numLen,s+pre,cur-pre);
                        numLen+=cur-pre;
                        num[numLen++]=',';
                    }
                    else {
                        chEmp=false;
                        strncpy(ch+chLen,s+pre,cur-pre);
                        chLen+=cur-pre;
                        ch[chLen++]=',';
                    }
                }
                pre=++cur;
                isNum=true;
            }
            else {
                if(!('0'<=s[cur]&&s[cur]<='9'))
                    isNum=false;
                ++cur;
            }
        }
        if(numEmp)
            printf("-\n");
        else {
            num[numLen-1]='\0';
            printf("\"%s\"\n",num);
        }
        if(chEmp)
            printf("-\n");
        else {
            ch[chLen-1]='\0';
            printf("\"%s\"\n",ch);
        }
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值