比赛 |
至少完成十道练习 |
评测结果 |
AAAAAAAAAAAAATTTTTTA |
题目名称 |
海港 |
最终得分 |
70 |
用户昵称 |
FFF团 |
运行时间 |
6.020 s |
代码语言 |
C++ |
内存使用 |
1.84 MiB |
提交时间 |
2017-05-23 19:57:30 |
显示代码纯文本
#include<bits/stdc++.h>
#include<cstdio>
#include<iostream>
#include<cstring>
#include<set>
#include<vector>
using namespace std;
const int maxn=100001;
int n,t[maxn],k,p,l=-0x7fffffff;
int a[3*maxn];
set<int>people;
int main(){
freopen("port.in","r",stdin);
freopen("port.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d%d",&t[i],&k);
for(int j=1;j<=k;j++){
scanf("%d",&p);
a[p]=t[i];
l=max(l,p);
}
int ans=0;
for(int j=1;j<=l;j++)
if(a[j]>t[i]-86400&&a[j])ans++;
//else cout<<*it<<" "<<a[*it]<<endl;
printf("%d\n",ans);
}
return 0;
}