/// tree bends in youth
/// 24 .10.2023
/// success is doing same thing in every single day!!!
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define all(x) x.begin(), x.end()
#define F first
#define S second
using namespace std;
const ll N =1e5+ 5;
const ll NN =2e6 + 5;
const ll INF = -1e1;
const ll MOD = 1e9 + 7;
const ll LG = 18;
const ll k = 316;
int a[N],ans[N];
ll nd[N],sum[N];
void solve(){
int n,m,k;
cin >> n >> m ;
for(int i = 1;i <= m;i++)cin >> a[i];
for(int i = 1;i <= n;i++){
cin >> nd[i];
ans[i] = 0;
}
cin >> k;
for(int z = 1;z <= k;z++){
int l,r;
ll v;
cin >> l >> r >> v;
if(l >r){
for(int i = l;i <= m;i++){
sum[a[i]] += v;
if(sum[a[i]] >= nd[a[i]] && ans[a[i]] == 0){
ans[a[i]] = z;
}
}
for(int i = 1;i <= r;i++){
sum[a[i]] += v;
if(sum[a[i]] >= nd[a[i]] && ans[a[i]] == 0){
ans[a[i]] = z;
}
}
}
else{
for(int i = l;i <= r;i++){
sum[a[i]] += v;
if(sum[a[i]] >= nd[a[i]] && ans[a[i]] == 0){
ans[a[i]] = z;
}
}
}
}
for(int i = 1;i <= n;i++){
if(ans[i] == 0)cout << "NLE\n";
else cout << ans[i] << '\n';
}
}
main (){
ios_base::sync_with_stdio(0);
cin.tie(0);
// freopen("input.txt","r",stdin);
// freopen("output.txt","w",stdout);
ll abd= 1;
// cin >> abd;
for(ll i = 1;i <= abd;i++){
// cout << "Case " << i << ":\n";
solve();
}
}
Compilation message
met.cpp:61:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
61 | main (){
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1514 ms |
2492 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1095 ms |
2556 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1856 ms |
2524 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3030 ms |
2492 KB |
Output is correct |
2 |
Incorrect |
4445 ms |
2564 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
8 ms |
4956 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
8 ms |
4956 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |