Submission #761946

# Submission time Handle Problem Language Result Execution time Memory
761946 2023-06-20T12:25:08 Z vjudge1 Meteors (POI11_met) C++17
100 / 100
3855 ms 37796 KB
#include <bits/stdc++.h>
using namespace std;
 
// #pragma comment(linker, "/stack:2000000000")
// #pragma GCC optimize("Ofast,unroll-loops,fast-math,O3")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
 
 
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll,ll> pll;
 
#define sz size()
#define ff first
#define ss second
#define all(a) a.begin(),a.end()
#define pb push_back
 
const int mod = ll(1e9)+7; //(b + (a%b)) % b (to mod -1%(10^9+7) correctly in c++ its -1 but its suppose to be 10^9+6
const int MOD = 998244353;  // (a%mod)*(binpow(b,mod-2,mod) = (a/b)%mod
const int N = ll(4e5)+10;
const long long inf = 1e18;
//const int inf = 1e9;
const long double eps = 1e-15L;
const ll B = 400;
 
 
ll n, m, o[N], p[N], k, ansblock[N], ans[N], ql[N], qr[N], qa[N], sum[N];
ll scan[N], origp[N];
vector<ll>pos[N];
 
void Baizho() {
	cin>>n>>m;
	for(int i = 1; i<=m; i++) {
		cin>>o[i];
		pos[o[i]].pb(i);
	}
	for(int i = 1; i<=n; i++) {
		cin>>p[i];
		ans[i] = ansblock[i] = -1;
	}
	cin>>k;
	for(int i = 1; i<=k; i++) {
		ll l, r, a;
		cin>>l>>r>>a;
		ql[i] = l;
		qr[i] = r;
		qa[i] = a;
		if(l > r) {
			scan[l] += a;
			scan[m + 1] -= a;
			scan[1] += a;
			scan[r + 1] -= a;
		}
		else {
			scan[l] += a;
			scan[r + 1] -= a;
		}
		
		if(i == k || i % B == 0) {
			vector<ll> vec;
			for(ll j = 1; j<=m; j++) scan[j] += scan[j - 1];
			for(ll j = 1; j<=n; j++) sum[j] = 0;
			for(ll j = 1; j<=m; j++) sum[o[j]] += scan[j];
			for(ll j = 1; j<=n; j++) {
				if(ans[j] != -1) continue;
				if(p[j] <= sum[j] && ansblock[j] == -1) {
					vec.pb(j);
					ansblock[j] = (i + B - 1) / B;
				}
			}
			for(ll j = 1; j<=n; j++) sum[j] = 0;
			ll thisblock = (i + B - 1) / B;
			ll start = max(1ll, thisblock * B - B + 1), final = i;
			for(ll j = start; j <= final; j++) {
				for(auto x : vec) {
					ll L, R;
					if(ql[j] > qr[j]) {
						L = ql[j], R = m;
						ll cnt = upper_bound(all(pos[x]), R) - pos[x].begin() - (lower_bound(all(pos[x]), L) - pos[x].begin());
						sum[x] += cnt * qa[j];
						
						L = 1, R = qr[j];
						cnt = upper_bound(all(pos[x]), R) - pos[x].begin() - (lower_bound(all(pos[x]), L) - pos[x].begin());
						
						sum[x] += cnt * qa[j];
						if(p[x] <= sum[x] && ans[x] == -1) {
							ans[x] = j;
						}
						
 					}
 					else {
 						L = ql[j], R = qr[j];
						ll cnt = upper_bound(all(pos[x]), R) - pos[x].begin() - (lower_bound(all(pos[x]), L) - pos[x].begin());
						sum[x] += cnt * qa[j];
						if(p[x] <= sum[x] && ans[x] == -1) {
							ans[x] = j;
						}
					}
				}
			}
			for(ll j = 1; j<=m; j++) {
				p[o[j]] -= scan[j];
				scan[j] = 0;
			}
			scan[0] = scan[m + 1] = 0;
			
		}
	}
	for(int i = 1; i<=n; i++) {
		if(ans[i] == -1) cout<<"NIE\n";
		else cout<<ans[i]<<"\n";
	}
}
 
int main() {
 
//     Freopen("guard");
    ios_base::sync_with_stdio(false);   
    cin.tie(0);cout.tie(0); 
    
   
    int ttt = 1;
//    cin>>ttt;
 
    for(int i=1; i<=ttt; i++) {Baizho(); }
}
# Verdict Execution time Memory Grader output
1 Correct 5 ms 9812 KB Output is correct
2 Correct 5 ms 9856 KB Output is correct
3 Correct 7 ms 9812 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 6 ms 9852 KB Output is correct
2 Correct 8 ms 9812 KB Output is correct
3 Correct 6 ms 9812 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 59 ms 12488 KB Output is correct
2 Correct 55 ms 13472 KB Output is correct
3 Correct 183 ms 12996 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 104 ms 12664 KB Output is correct
2 Correct 117 ms 12776 KB Output is correct
3 Correct 317 ms 13524 KB Output is correct
4 Correct 45 ms 11952 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 58 ms 12596 KB Output is correct
2 Correct 105 ms 13400 KB Output is correct
3 Correct 15 ms 10964 KB Output is correct
4 Correct 131 ms 13152 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 57 ms 12236 KB Output is correct
2 Correct 108 ms 12684 KB Output is correct
3 Correct 60 ms 12360 KB Output is correct
4 Correct 168 ms 13524 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2727 ms 30976 KB Output is correct
2 Correct 1601 ms 24040 KB Output is correct
3 Correct 43 ms 15568 KB Output is correct
4 Correct 3855 ms 35840 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2522 ms 29980 KB Output is correct
2 Correct 1598 ms 24100 KB Output is correct
3 Correct 44 ms 14444 KB Output is correct
4 Correct 3554 ms 37796 KB Output is correct