Submission #119007

#TimeUsernameProblemLanguageResultExecution timeMemory
119007raghav0307Examination (JOI19_examination)C++14
0 / 100
74 ms8524 KiB
/*raghav0307 - Raghav Gupta*/ #include <bits/stdc++.h> using namespace std; #define ff first #define ss second #define pb push_back #define fast_io() ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); typedef long long ll; typedef pair<int, int> pii; typedef long double ld; #define int ll const int MAXN = 1e5 + 5; int bit[MAXN]; int add(int pos, int delta){ for( ; pos < MAXN; pos = pos | ( pos + 1)) bit[pos] += delta; } int sum(int pos){ int ans = 0; for( ; pos >= 0; pos = (pos & (pos+1)) - 1) ans += bit[pos]; return ans; } int sum(int l, int r){ return sum(r) - sum(l-1); } signed main(){ fast_io(); int n, q; cin >> n >> q; pair<int, int> score[n]; for(int i = 0; i < n; i++){ cin >> score[i].ff >> score[i].ss; } sort(score, score + n); vector<pair<pii, int> > criter; int ans[q]; for(int i = 0; i < q; i++){ int x, y , z; cin >> x >> y >> z; criter.pb({{x,y}, i}); } sort(criter.begin(), criter.end()); int at = n-1; while(!criter.empty()){ auto x = criter.back(); criter.pop_back(); while(at >= 0 and score[at].ff >= x.ff.ff){ add(score[at].ss, 1); at--; } ans[x.ss] = sum(x.ff.ss, MAXN); } for(int i = 0; i < q; i++) cout << ans[i] << "\n"; return 0; }

Compilation message (stderr)

examination.cpp: In function 'll add(ll, ll)':
examination.cpp:22:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...