답안 #865087

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
865087 2023-10-24T05:28:23 Z vjudge1 Meteors (POI11_met) C++17
24 / 100
88 ms 65536 KB
//gm  --- akezhon
#include <bits/stdc++.h>
//#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#define int long long
#define pb push_back
#define F first
#define S second
#define all(v) v.begin(),v.end()
#define pii pair<int,int>
#define tm (tl+tr)/2
#define TL v+v, tl, tm
#define TR v+v+1, tm+1, tr
#define DA l <= tl && tr <= r
#define NET r < tl || tr < l
#define double long double
using namespace std;
const int N=5e3+7;
const int M=1e9+7;
const int inf=1e9;
int n, m, k;
int a[N];
int b[N];
int p[N][N];
struct qu{
	int l, r, p;
}f[N];
struct lol{
	int l, r, m, ans;
}c[N];
void AlemAmenov(){
	
	cin >> n >> m;
	for(int i=1; i <= m; i++){
		cin >> a[i];
		for(int j=1; j <= n; j++){
			p[i][j] = p[i-1][j];
		}
		p[i][a[i]]++;
	}
	for(int i=1; i <= n; i++){
		cin >> b[i];
	}
	cin >> k;
	for(int i=1; i <= n; i++){
		c[i].l = 1;
		c[i].r = k;
	}
	for(int i=1; i <= k; i++){
		cin >> f[i].l >> f[i].r >> f[i].p;
	}
	for(int gg=1; gg <= 20; gg++){
		for(int i=1; i <= n; i++){
			c[i].m = (c[i].l + c[i].r)/2;
			if(c[i].l <= c[i].r){
				int cnt=0;
				for(int j=1; j <= c[i].m; j++){
					if(f[j].l <= f[j].r){
						cnt += (p[f[j].r][i] - p[f[j].l-1][i])*f[j].p;
					}
					else {
						cnt += p[f[j].r][i]*f[j].p;
						cnt += (p[m][i]-p[f[j].l-1][i])*f[j].p;
					}
				}
				if(b[i] <= cnt)c[i].ans = c[i].m, c[i].r = c[i].m-1;
				else c[i].l = c[i].m+1;
			}
		}
	}
	for(int i=1; i <= n; i++){
		if(c[i].ans)cout << c[i].ans << '\n';
		else cout << "NIE\n";
	}
	
}
signed main(){

	ios_base::sync_with_stdio(0);
	cin.tie(0);
	// freopen("promote.in", "r", stdin);
	// freopen("promote.out", "w", stdout);
	int RealName=1;
	// cin >> RealName;
	// int C=0;
	while(RealName--){
		// cout << "Case " << ++C << ":\n";
		AlemAmenov();
	}

return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 39512 KB Output is correct
2 Correct 13 ms 39772 KB Output is correct
3 Correct 7 ms 39692 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 39772 KB Output is correct
2 Correct 6 ms 39792 KB Output is correct
3 Correct 14 ms 39772 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 15 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 18 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 15 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 11 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 88 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 74 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -