# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
386072 | georgerapeanu | Fireworks (APIO16_fireworks) | C++11 | 429 ms | 115436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct vodoo_list_t{
map<long long,int> slopes;
long long a,b;
vodoo_list_t(){
slopes = map<long long,int>();
a = 0;
b = 0;
}
vodoo_list_t(int length){
slopes = map<long long,int>();
a = 1;
b = -length;
slopes[0] = -1;
slopes[length] = 2;
}
void merge(vodoo_list_t &other){
for(auto it:other.slopes){
slopes[it.first] += it.second;
}
this->a += other.a;
this->b += other.b;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |