# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
156374 | georgerapeanu | Bulldozer (JOI17_bulldozer) | C++11 | 1249 ms | 32120 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <algorithm>
using namespace std;
struct point_t{
int x,y,c;
bool operator < (const point_t &other)const{
if(x != other.x){
return x < other.x;
}
return y < other.y;
}
};
struct line_t{
int a,b;
int i,j;
};
struct node_t{
long long pref_sum;
long long suff_sum;
long long best_sum;
long long total_sum;
node_t(long long a = 0LL){
pref_sum = max(a,0LL);
suff_sum = max(a,0LL);
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |