Educational Codeforces Round 2 A. Extract Numbers

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 string s=";;" 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", "".

题意:把给出的字符串中的数字和字符串分隔开,可能会有空字符串(‘,’或者‘;’的左右两边没有任何字符的话都视为有空字符串),输出的同类字符串用‘,’划分。

思路:模拟+无限debug+一顿乱打

#include <stdio.h>
#include <string.h>
#define maxn 100005
char s[maxn], ch[maxn], num[maxn];
int chl, numl, Kong;
int kong;
void solve(int l, int r)
{
    bool point = false, hasC = false;
    int  hasN = 0, cm = -1;
    for(int i = l;i <= r;i++){
        if(s[i] == '.'){
            point = true;
            break;
        }
        else if((s[i]>='A'&&s[i]<='Z')||(s[i]>='a'&&s[i]<='z')){
            hasC = true;
            break;
        }else if(s[i] >= '0'&&s[i] <= '9'){
            hasN++;
            if(cm == -1) cm = i;
        }
    }
    //printf("%d %d\n", l, r);
    if(s[cm] == '0'&&hasN != 1) hasC = true;
    if(!hasN&&!hasC&&!point){
        if(chl!=0&&ch[chl-1]!=',') ch[chl++] = ',';
        Kong++;
        ch[chl++] = ',';
        kong = 1;
    }
    else if(point||hasC){
        //if(r-l==1) ch[chl++] = ',';
        if(chl != 0&&!kong) ch[chl++] = ',';
        for(int i = l;i <= r;i++)
            if(s[i] != ','&&s[i] != ';')
                ch[chl++] = s[i];
                //printf("--\n");
        kong = 0;
    }else{
        if(numl != 0&&num[numl - 1] != ',') num[numl++] = ',';
        for(int i = l;i <= r;i++)
            if(s[i] != ','&&s[i] != ';')
                num[numl++] = s[i];
                //printf("pp\n");
    }
}
int main()
{
    int i, len, l, r;
    scanf("%s", s);
    len = strlen(s);
    l = r = 0;
    for(i = 0;i < len;i++)
    {
        if(s[i]==','||s[i]==';'||i==len-1){
            r = i;
            solve(l, r);
            l = r;
        }
    }
    if(s[len-1] == ','||s[len-1] == ';'){
        if(ch[chl-1] != ',')
            ch[chl++] = ',';
    }
    ch[chl] = num[numl] = '\0';
    if(chl==1&&ch[chl-1]==','&&len!=1) ch[chl-1] = '\0';
    if(numl == 0) puts("-");
    else printf("%c%s%c\n", '"', num, '"');
    if(chl == 0) puts("-");
    else printf("%c%s%c\n", '"', ch, '"');
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值