杭电acm 1028题,我在自己编译器上一直没问题,提交上去却一直wrong answer,请大伙指点下我,不胜感激!

#include<iostream>#include<cstdio>#include<string>#include<vector>usingnamespacestd;i... #include <iostream>
#include <cstdio>
#include <string>
#include <vector>
using namespace std;

int main()
{
int N;
while(scanf("%d", &N) != EOF)
{
while(N--)
{
string str;
vector<char> vect;
int cont = 1;
cin >> str;
unsigned int len = static_cast<unsigned int> (str.size());

for(int i = 1; i < len; i++)
{
if(str.at(i) == str.at(i-1))
{
cont++;
if(i == len-1)
{
char cnt = cont + '0';
vect.push_back(cnt);
vect.push_back(str.at(i));
cont = 1;
}
}
else
{
if(1 != cont)
{
char cnt = cont + '0';
vect.push_back(cnt);
vect.push_back(str.at(i-1));
cont = 1;
}
else if(i == len-1)
{
vect.push_back(str.at(i-1));
vect.push_back(str.at(i));
}
else
vect.push_back(str.at(i-1));
}
}

for(vector<char>::iterator iter = vect.begin(); iter != vect.end(); iter++)
{
cout << *iter;
}
cout << endl;

}
}
return 0;
}
展开
 我来答
826010478
2015-01-27 · TA获得超过521个赞
知道小有建树答主
回答量:920
采纳率:53%
帮助的人:283万
展开全部
你在自己编译器上没问题指什么?平台的wrong answer指的是结果错误
追问
就是那几个输入数出来的结果是正确的。但提交平台就WA。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式