Submission #865738

# Submission time Handle Problem Language Result Execution time Memory
865738 2023-10-24T15:00:27 Z vjudge1 Meteors (POI11_met) C++17
Compilation error
0 ms 0 KB
#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <string>
#include <bitset>
#include <cstdio>
#include <limits>
#include <vector>
#include <climits>
#include <cstring>
#include <cstdlib>
#include <fstream>
#include <numeric>
#include <sstream>
#include <cassert>
#include <iomanip>
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <fstream>
#include <unordered_map>

using namespace std;

typedef long long ll;
typedef long double ld;

//#define int long long

#define all(x) x.begin(),x.end()
#define pb push_back
#define ent "\n"

const int maxn = (int)3e5 + 1;
const ll inf = (long long)1e18 + 20;
const int mod = (int)1e9 + 7;

int n,m;
vector<int>pos[maxn],MID[maxn];
int a[maxn];
int l[maxn],r[maxn],w[maxn];
pair<int,int>seg[maxn];
ll t[maxn * 4];

void upd(int v,int tl,int tr,int l,int r,int x){
	if(l <= tl && tr <= r){
		t[v] += x;
		return;
	}
	int mid = (tl + tr) >> 1;
	if(l > tr || r < tl)return;
	upd(v * 2,tl,mid,l,r,x);
	upd(v * 2 + 1,mid + 1,tr,l,r,x);
}

ll get(int v,int tl,int tr,int pos){
	if(tl == tr){
		return t[v];
	}
	int mid = (tl + tr) >> 1;
	if(pos <= mid){
		return (t[v] + get(v * 2,tl,mid,pos));
	}
	else{
		return (t[v] + get(v * 2 + 1,mid + 1,tr,pos));
	}
}

void build(int v,int tl,int tr){
	if(tl == tr){
		t[v] = 0;
		q[v] = 0;
		return;
	}
	int mid = (tl + tr) >> 1;
	build(v * 2,tl,mid);
	build(v * 2 + 1,mid + 1,tr);
	t[v] = 0,q[v] = 0;
}

ll ans[maxn];

void solve(){
	cin >> n >> m;
	for(int i = 1 ; i <= m ; i ++){
		int o;cin >> o;
		pos[o].pb(i);
	}
	for(int i = 1 ; i <= n ; i ++){
		cin >> a[i];
	}
	int k;cin >> k;
	for(int i = 1 ; i <= k ; i++){
		cin >> l[i] >> r[i] >> w[i];
	}
	for(int i = 1 ; i <= n ; i ++){
		seg[i] = {1, k};
	}
	int ok = 1;
	while(ok){
		build(1,1,m), ok = 0;
		for(int i = 1 ; i <= n ; i ++){
			if(seg[i].first <= seg[i].second){
				int mid = (seg[i].first + seg[i].second) >> 1;
				MID[mid].pb(i);
				ok = 1;
			}
		}
		for(int i = 1 ; i <= k ; i ++){
			if(l[i] <= r[i]){
				upd(1,1,m,l[i],r[i],w[i]);
			}
			else{
				upd(1,1,m,l[i],m,w[i]);
				upd(1,1,m,1,r[i],w[i]);
			}
			ll sum = 0;
			for(int x : MID[i]){
				sum = 0;
				for(int y : pos[x]){
					sum += get(1,1,m,y);
					if(sum >= a[x])break;
				}
				if(sum >= a[x]){
					seg[x].second = i - 1;
					ans[x] = i;
				}
				else{
					seg[x].first = i + 1;
				}
			}
			MID[i].clear();
		}
	}
	for(int i = 1 ; i <= n ; i ++){
		if (ans[i] == 0) cout << "NIE\n";
		else cout << ans[i] << '\n';
	}
}


main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int t = 1;
	//cin >> t;
	while(t --){
		solve();
	}
	return 0;
}

Compilation message

met.cpp: In function 'void build(int, int, int)':
met.cpp:77:3: error: 'q' was not declared in this scope
   77 |   q[v] = 0;
      |   ^
met.cpp:83:11: error: 'q' was not declared in this scope
   83 |  t[v] = 0,q[v] = 0;
      |           ^
met.cpp: At global scope:
met.cpp:147:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
  147 | main(){
      | ^~~~