0
已解决
黄子扬
初级天翼
初级天翼
#include <bits/stdc++.h>
using namespace std;
struct crazy
{
int h,t;
}a[2005];
int n,ans;
int p[10][2000],f[10];
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a[i].h>>a[i].t;
p[a[i].h][++f[a[i].h]]=a[i].t;
}
for(int i=1;i<=6;i++)
sort(p[i],p[i]+f[i]);
for(int i=1;i<=6;i++)
{
for(int j=2;j<=f[i];j++)
if(p[j]-p[j-1]>=60)
ans++;
}
cout<<ans<<endl;
return 0;
}
两分钟口胡的,喜提0分,请问我的思路有问题吗?找相邻时间差超过60s的。