이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define nah_id_win ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define fi first
#define se second
using namespace std;
int main(){
nah_id_win;
ll n; cin >> n;
ll a[n];
for(int i=0; i<n; i++)
cin >> a[i];
sort(a, a+n);
ll m, k, b, low, cnt=0; cin >> m;
bool flag;
while(m--){
flag=0;
cin >> k;
while(k--){
cin >> b;
low=lower_bound(a, a+n, b)-a;
if(a[low]==b && low<n){
flag=1;
//cout << a[low] << endl;
}
}
if(!flag) cnt++;
}
cout << cnt;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |