杭电3351为什么WA?跪求bug。。。

#include<stdio.h>#include<string.h>inthead,tail;intmain(){intCase,count;chars[2001];C... #include<stdio.h>
#include<string.h>
int head,tail;

int main(){
int Case,count;
char s[2001];
Case = 0;
while(scanf("%s",s),s[0] != '-')
{
Case ++;
head = 0;
tail = strlen(s) - 1;
count = 0;
while(head < tail)
{
if(s[head] != '{')
{
s[head] = '{';
count ++;
}
if(s[tail] != '}')
{
s[tail] = '}';
count ++;
}
while(head < tail && s[head] == '{' && s[head + 1] == '}')
head += 2;
while(head < tail && s[tail] == '}' && s[tail - 1] == '{')
tail -= 2;
if(head < tail && s[head] == '{' && s[tail] == '}')
{
head ++;
tail --;
}
}
printf("%d. %d\n",Case,count);
}
return 0;
}
展开
 我来答
porker2008
2012-06-05 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
{{}}{{}}

#include <stdio.h>
#include <string.h>

int main()
{
int Case, count;
int len, i, num;
char s[2001];
Case = 0;
while(scanf("%s",s),s[0] != '-')
{
Case++;
count = 0;
num = 0;
len = strlen(s);
for(i=0;i<len;i++)
{
if(s[i]=='{') num++;
else if(s[i]=='}')
if(num)
num--;
else
{
num++;
count++;
}
}
count += num/2;
printf("%d. %d\n",Case,count);
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式