Submission #347761

# Submission time Handle Problem Language Result Execution time Memory
347761 2021-01-13T11:06:21 Z lovro_nidogon1 Meteors (POI11_met) C++14
74 / 100
2502 ms 65540 KB
#include<bits/stdc++.h>
#define breturn return
#define ll long long
using namespace std;
const int maxn = 300001;
ll n, m, o[maxn], p[maxn], a, b, c, q, bn, tour[1048600], ans[maxn]; 
vector<pair<ll, pair<ll, ll> > > midl[maxn], quer;
vector<ll> v[maxn];
bool done; 
void upd(ll ax, ll bx, ll val, ll x = 1, ll l = 0, ll r = bn - 1) {	
	if(ax > r or bx < l) breturn;
	if(l >= ax and r <= bx) {
		tour[x] += val;
		breturn;
	} 
	ll mid = (l + r)/2;
	upd(ax, bx, val, x * 2, l, mid);
	upd(ax, bx, val, x * 2 + 1, mid + 1, r);
}
ll query(ll ax, ll bx, ll x = 1, ll l = 0, ll r = bn - 1) {
	if(ax > r or bx < l) breturn 0;;
	if(l >= ax and r <= bx) {
		breturn tour[x];
	} 
	tour[x * 2] += tour[x];
	tour[x * 2 + 1] += tour[x];
	tour[x] = 0;
	ll mid = (l + r)/2;
	breturn query(ax, bx, x * 2, l, mid) + query(ax, bx, x * 2 + 1, mid + 1, r);
}
int main() {
	cin >> n >> m;
	for(int i = 0; i < m; i++ ) cin >> a, v[a - 1].push_back(i);
	for(ll i = 0; i < n; i++) cin >> p[i];	
	cin >> q;
	bn = (1 << ((ll)log2(m - 1 + (m == 1)) + 1));
	for(ll i = 0; i < q; i++) {
		cin >> a >> b >> c;
		quer.push_back({c, {a - 1, b - 1}});		
	}
	for(ll i = 0; i < n; i++) midl[(int)(q/2)].push_back({i, {0, q}});
	while(!done) {
		done = true;
		for(ll i = 0; i < 2 * bn; i++) tour[i] = 0;
		for(ll i = 0; i < q; i++) {
			if(quer[i].second.first > quer[i].second.second) {
				upd(0, quer[i].second.second, quer[i].first);
				upd(quer[i].second.first, m - 1, quer[i].first);
			} else upd(quer[i].second.first, quer[i].second.second, quer[i].first);			
			for(ll j = 0; j < midl[i].size(); j++) {				
				ll y = midl[i][j].first;
				unsigned ll x = 0;
				for(ll k = 0; k < v[y].size(); k++) {
					x += query(v[y][k], v[y][k]);									
					if(x >= p[y]) break;
				}	
				ll le = midl[i][j].second.first;
				ll re = midl[i][j].second.second;
				ll mid = (le + re)/2;
				if(x < p[y]) le = mid + 1;
				else re = mid;				
				mid = (le + re)/2;
				if(le == re) ans[y] = le;
				else midl[mid].push_back({y, {le, re}}), done = false;													
			}
			midl[i].clear();		
		}
	}
	for(ll i = 0; i < n; i++) {
		if(ans[i] == q) cout << "NIE\n";
		else cout << ans[i] + 1 << '\n';
	}
}

Compilation message

met.cpp: In function 'int main()':
met.cpp:50:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, std::pair<long long int, long long int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   50 |    for(ll j = 0; j < midl[i].size(); j++) {
      |                  ~~^~~~~~~~~~~~~~~~
met.cpp:53:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |     for(ll k = 0; k < v[y].size(); k++) {
      |                   ~~^~~~~~~~~~~~~
met.cpp:55:11: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'long long int' [-Wsign-compare]
   55 |      if(x >= p[y]) break;
      |         ~~^~~~~~~
met.cpp:60:10: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'long long int' [-Wsign-compare]
   60 |     if(x < p[y]) le = mid + 1;
      |        ~~^~~~~~
# Verdict Execution time Memory Grader output
1 Correct 14 ms 14572 KB Output is correct
2 Correct 14 ms 14572 KB Output is correct
3 Correct 15 ms 14572 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 14 ms 14700 KB Output is correct
2 Correct 14 ms 14700 KB Output is correct
3 Correct 15 ms 14700 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 383 ms 20324 KB Output is correct
2 Correct 585 ms 29284 KB Output is correct
3 Correct 541 ms 24928 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 499 ms 23292 KB Output is correct
2 Correct 511 ms 23268 KB Output is correct
3 Correct 560 ms 29536 KB Output is correct
4 Correct 160 ms 22192 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 289 ms 20576 KB Output is correct
2 Correct 410 ms 29204 KB Output is correct
3 Correct 188 ms 16740 KB Output is correct
4 Correct 504 ms 26724 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 458 ms 18352 KB Output is correct
2 Correct 492 ms 23388 KB Output is correct
3 Correct 441 ms 19552 KB Output is correct
4 Correct 582 ms 31456 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 1951 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2502 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -