新人求助,降雨量那题,本机AC提交RE。。
查看原帖
新人求助,降雨量那题,本机AC提交RE。。
256
lin_toto葉月ゆら楼主2017/5/11 17:25

RUN ID343625

以下是我的代码:

#include<iostream>
using namespace std;
int y[50],r[50];
int TF(int a,int b)
{
int c;
if(r[a]>r[b])    return 0;
for(c=b+1;c<a;c++)
{
if(r[c]>=r[a])    return 0;
}
return 1;
}
int maybe(int a ,int b)
{
int c,d=0;
for(c=b;c<a;c++)
{
if(y[c]+1<y[c+1])    {    return 2;    }
}
return 1;
}
int main()
{
int X,Y,m,n,a,b,i,j,k,l;
cin>>n;
for(i=0;i<n;i++)
cin>>y[i]>>r[i];
cin>>m;
for(i=0;i<m;i++)
{
cin>>Y>>X;
for(j=0;j<n;j++)
{
if(X==y[j])    a=j;
if(Y==y[j])    b=j;
}
l=0;
k=TF(a,b);
if(k==0)    {    cout<<"false"<<endl;    continue;    }
l=maybe(a,b);
if(l==2)    {    cout<<"maybe"<<endl;    continue;    }
if(l==1)    {    cout<<"true"<<endl;    continue;    }
}
return 0;
}
2017/5/11 17:25
加载中...