# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
29308 |
2017-07-19T02:00:44 Z |
윤교준(#1168) |
Meteors (POI11_met) |
C++11 |
|
2459 ms |
44608 KB |
#include <bits/stdc++.h>
#define pb push_back
#define sz(V) ((int)(V).size())
#define allv(V) ((V).begin()),((V).end())
#define befv(V) ((V)[sz(V)-2])
#define sorv(V) sort(allv(V))
#define revv(V) reverse(allv(V))
#define univ(V) (V).erase(unique(allv(V)),(V).end())
#define clv(V) (V).clear()
#define upmax(a,b) (a)=max((a),(b))
#define rb(x) ((x)&(-(x)))
#define MAXN (600005)
#define MAXM (600005)
#define MAXK (600005)
using namespace std;
typedef long long ll;
void myassert(bool chk) { if(!chk) { while(1)puts("ERR!"); exit(-1); } }
struct BIT {
ll d[MAXM];
void init() { fill(d, d+MAXM, 0); }
void upd(int x, ll r) { for(; x < MAXM; x += rb(x)) d[x] += r; }
ll get(int x) { ll r = 0; for(; x; x -= rb(x)) r += d[x]; return r; }
};
struct Node {
Node(int idx, int s, int e) : idx(idx), s(s), e(e), x((s+e)/2) {}
int idx, s, e, x;
bool operator < (const Node& t) const { return x < t.x; }
};
BIT bit;
vector<int> G[MAXN];
vector<Node> V;
int A[MAXK], B[MAXK], C[MAXK], RI[MAXK];
int D[MAXM], E[MAXN];
int Ans[MAXN];
bool isn[MAXN];
int N, M, K;
void input() {
scanf("%d%d", &N, &M);
myassert(1 <= N && N <= 300000);
myassert(1 <= M && M <= 300000);
for(int i = 1; i <= M; i++) scanf("%d", &D[i]);
for(int i = 1; i <= N; i++) scanf("%d", &E[i]);
for(int i = 1; i <= M; i++) myassert(1 <= D[i] && D[i] <= N);
for(int i = 1; i <= N; i++) myassert(1 <= E[i] && E[i] <= 1000000000);
int KK; scanf("%d", &KK);
myassert(1 <= KK && KK <= 300000);
for(int a, b, c, ki = 1; ki <= KK; ki++) {
scanf("%d%d%d", &a, &b, &c);
myassert(1 <= a && a <= M && 1 <= b && b <= M);
myassert(1 <= c && c <= 1000000000);
if(a <= b) {
K++; A[K] = a; B[K] = b; C[K] = c; RI[K] = ki;
} else {
K++; A[K] = a; B[K] = M; C[K] = c; RI[K] = ki;
K++; A[K] = 1; B[K] = b; C[K] = c; RI[K] = ki;
}
}
}
int main() {
input();
//printf("N = %d, M = %d, K = %d\n", N, M, K);
//for(int i = 1; i <= K; i++) printf("%d : %d %d %d %d\n", i, A[i], B[i], C[i], RI[i]);
for(int i = 1; i <= M; i++) G[D[i]].pb(i);
for(int i = 1; i <= K; i++) { bit.upd(A[i], C[i]); bit.upd(B[i]+1, -C[i]); }
//for(int i = 1; i <= M; i++) printf("%d : %lld\n", i, bit.get(i));
for(int i = 1; i <= N; i++) {
ll ret = 0;
for(int v : G[i]) ret += bit.get(v);
if(E[i] <= ret) continue;
isn[i] = true;
}
for(int i = 1; i <= N; i++) {
if(isn[i]) continue;
V.pb(Node(i, 1, K));
}
for(int t = 0; t < 25; t++) {
bit.init(); sorv(V);
for(int x = 1, vi = 0; x <= K && vi < sz(V); x++) {
bit.upd(A[x], C[x]); bit.upd(B[x]+1, -C[x]);
for(; vi < sz(V) && V[vi].x == x; vi++) {
if(V[vi].s >= V[vi].e) continue;
ll ret = 0; int idx = V[vi].idx;
for(int v : G[idx]) ret += bit.get(v);
if(E[idx] <= ret) V[vi].e = V[vi].x;
else V[vi].s = V[vi].x+1;
V[vi].x = (V[vi].s + V[vi].e) / 2;
}
}
}
for(Node& v : V) Ans[v.idx] = RI[v.s];
for(int i = 1; i <= N; i++) {
if(isn[i] || !Ans[i]) { puts("NIE"); continue; }
printf("%d\n", Ans[i]);
}
return 0;
}
Compilation message
met.cpp: In function 'void input()':
met.cpp:40:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &N, &M);
^
met.cpp:43:48: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
for(int i = 1; i <= M; i++) scanf("%d", &D[i]);
^
met.cpp:44:48: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
for(int i = 1; i <= N; i++) scanf("%d", &E[i]);
^
met.cpp:47:26: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
int KK; scanf("%d", &KK);
^
met.cpp:50:30: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d%d", &a, &b, &c);
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
37764 KB |
Output is correct |
2 |
Correct |
13 ms |
37764 KB |
Output is correct |
3 |
Correct |
29 ms |
37764 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
37764 KB |
Output is correct |
2 |
Correct |
16 ms |
37764 KB |
Output is correct |
3 |
Correct |
19 ms |
37764 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
56 ms |
38028 KB |
Output is correct |
2 |
Correct |
333 ms |
38424 KB |
Output is correct |
3 |
Correct |
266 ms |
38760 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
313 ms |
38656 KB |
Output is correct |
2 |
Correct |
336 ms |
38672 KB |
Output is correct |
3 |
Correct |
133 ms |
39312 KB |
Output is correct |
4 |
Correct |
43 ms |
38568 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
256 ms |
38296 KB |
Output is correct |
2 |
Correct |
389 ms |
39008 KB |
Output is correct |
3 |
Correct |
153 ms |
37764 KB |
Output is correct |
4 |
Correct |
253 ms |
38828 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
139 ms |
38056 KB |
Output is correct |
2 |
Correct |
373 ms |
38680 KB |
Output is correct |
3 |
Correct |
213 ms |
38160 KB |
Output is correct |
4 |
Correct |
353 ms |
39428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2276 ms |
44608 KB |
Output is correct |
2 |
Incorrect |
1719 ms |
40416 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2459 ms |
44408 KB |
Output is correct |
2 |
Incorrect |
1113 ms |
39900 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |