답안 #545859

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
545859 2022-04-05T15:27:15 Z fuad27 사탕 분배 (IOI21_candies) C++17
0 / 100
5000 ms 8892 KB
#include "candies.h"
#include<bits/stdc++.h>
using namespace std;
const int MAXN = 200'010;
long long fen[MAXN];
void upd(int at, long long val) {
	at++;
	while(at < MAXN) {
		fen[at]+=val;
		at+=at&(-at);
	}
}
long long query(int r) {
	long long sum = 0;
	r++;
	while(r > 0) {
		sum+=fen[r];
		r-=r&(-r);
	}
	return sum;
}
vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v) {
    int n = c.size();
    vector<int> s(n);
	for(int i = 0;i<MAXN;i++)fen[i] =0;
	for(int i = 0;i<n;i++) {
		for(int j = l[i];j<=r[i];j++) {
			if(v[i] > 0) {
				s[j] = min(s[j] + v[i], c[j]);
			}
			else {
				s[j] = max(s[j] + v[i], 0);
			}
		}
	}
    return s;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1748 KB Output is correct
2 Correct 1 ms 1748 KB Output is correct
3 Incorrect 1 ms 1852 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5039 ms 8892 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 3540 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1868 KB Output is correct
2 Runtime error 3 ms 3668 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1748 KB Output is correct
2 Correct 1 ms 1748 KB Output is correct
3 Incorrect 1 ms 1852 KB Output isn't correct
4 Halted 0 ms 0 KB -