0分求助!!!

P1320 压缩技术(续集版)

HarryPotterJames @ 2021-09-04 15:20:57

测试数据是对的……

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    getline(cin,s);
    string ks="";
    ks+=s;
    int n=s.length();
    for(int i=1;i<n;i++)
    {
        cin>>s;
        ks+=s;
    }
    int sum=1;
    cout<<n;
    for(int i=0;i<n*n;i++)
    {
        if(ks[i]==ks[i+1])
            sum++;
        else
        {
            cout<<' '<<sum;
            sum=1;
        }
    }
    cout<<endl;
    return 0;
}

by HarryPotterJames @ 2021-09-04 15:22:09

题目Link


by wzmzmhk @ 2021-09-04 18:08:04

@HarryPotterJames 不需要 link 的,在题目的讨论区发帖,右边会有题目


by wzmzmhk @ 2021-09-04 18:09:22

@HarryPotterJames 在洛谷IDE上的结果样例过不了


by wzmzmhk @ 2021-09-04 18:09:40

你的输出:8 3 1 3 1 3 1 6 4 3 1 6 1 6 1 3 14


by HarryPotterJames @ 2021-09-04 20:09:36

@wzmzmhk 收到,谢谢大佬!


by HarryPotterJames @ 2021-09-04 20:10:06

我是怕有人不知道……


|