# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
888597 | 2023-12-18T01:07:51 Z | thunopro | Passport (JOI23_passport) | C++14 | 32 ms | 5340 KB |
#include<bits/stdc++.h> using namespace std ; #define maxn 200009 #define ll long long #define fi first #define se second #define pb push_back #define left id<<1 #define right id<<1|1 #define re exit(0); const int mod = 1e9+7 ; const int INF = 1e9 ; const int LOG = 18 ; typedef vector<int> vi ; typedef vector<ll> vl ; typedef pair<int,int> pii ; typedef vector<pii> vii ; typedef pair<ll,ll> pll ; void add ( int &a , int b ) { a += b ; if ( a < 0 ) a += mod ; if ( a >= mod ) a -= mod ; } template < typename T > void chkmin (T &a , T b) { if (a>b) a=b ;} template < typename T > void chkmax (T &a , T b) { if (a<b) a=b ;} void rf () { freopen ("bai1.inp","r",stdin) ; // freopen ("bai1.out","w",stdout) ; } int n ; pii a [maxn] ; bool is_query [maxn] ; void sub1 () { priority_queue <int> S ; for ( int i = 1 ; i <= a [1].se ; i ++ ) S.push(a[i].se) ; int res = 1 ; int cur = a[1].se ; while ( !S.empty () ) { int u = S.top() ; S.pop() ; if ( cur >= u ) break ; while ( cur < u ) S . push (a[++cur].se) ; res ++ ; } if ( cur >= n ) cout << res ; else cout << -1 ; } int main () { ios_base::sync_with_stdio(0) ; cin.tie(0) ; cout.tie(0) ; // rf () ; cin >> n ; for ( int i = 1 ; i <= n ; i ++ ) cin >> a [i].fi >> a[i].se ; int nq ; cin >> nq ; for ( int i = 1 ; i <= nq ; i ++ ) { int x ; cin >> x ; is_query [x] = true ; } if ( nq == 1 && is_query [1] == true ) sub1 () ; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 28 ms | 5340 KB | Output is correct |
5 | Correct | 32 ms | 5332 KB | Output is correct |
6 | Correct | 24 ms | 4444 KB | Output is correct |
7 | Correct | 20 ms | 4628 KB | Output is correct |
8 | Correct | 17 ms | 3808 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 28 ms | 5340 KB | Output is correct |
5 | Correct | 32 ms | 5332 KB | Output is correct |
6 | Correct | 24 ms | 4444 KB | Output is correct |
7 | Correct | 20 ms | 4628 KB | Output is correct |
8 | Correct | 17 ms | 3808 KB | Output is correct |
9 | Correct | 1 ms | 348 KB | Output is correct |
10 | Incorrect | 0 ms | 348 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |