新人求助,降雨量那题,本机AC提交RE。。。

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;
}

3 条评论

  • @ 2020-08-22 02:19:00

    额,没人接下去了吗??……

  • @ 2020-06-11 11:19:20

    代码明显有问题,你本机是怎么A的。。

  • @ 2019-03-27 16:30:40

    数组只开50是认真的吗qaq

  • 1

信息

难度
8
分类
(无)
标签
递交数
14
已通过
4
通过率
29%
上传者