c++提交上oj的代码,显示超时,不知道有何改进方法,求大神指点
#include<iostream>#include<stdio.h>usingnamespacestd;intmain(){intt,d,j,a;chars;cin>>...
#include <iostream>
#include <stdio.h>
using namespace std;
int main ()
{
int t,d,j,a;
char s;
cin>>t;
getchar();
for (int i=1;i<=t;i++)
{
for (d=0,j=0,a=0;(s=getchar())!='\n';)
{
if (s!=32)
{
j=1;
a=1;
}
if (s==32 && j==1)
{
d++;
j=0;
}
}
if(a==1 && j!=0) cout<<d+1<<endl;
if(a!=1 || j==0) cout<<d<<endl;
}
return 0;
}
题目地址:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1904 展开
#include <stdio.h>
using namespace std;
int main ()
{
int t,d,j,a;
char s;
cin>>t;
getchar();
for (int i=1;i<=t;i++)
{
for (d=0,j=0,a=0;(s=getchar())!='\n';)
{
if (s!=32)
{
j=1;
a=1;
}
if (s==32 && j==1)
{
d++;
j=0;
}
}
if(a==1 && j!=0) cout<<d+1<<endl;
if(a!=1 || j==0) cout<<d<<endl;
}
return 0;
}
题目地址:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1904 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询