# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
70143 | yusufake | 벽 (IOI14_wall) | C++98 | 1095 ms | 181500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#include "wall.h"
#define N 2000006
#define tm (tl+tr >> 1)
int A[N<<2],B[N<<2],T[N];
void put1(int v, int x){
A[v] = max(A[v],x);
B[v] = max(B[v] , A[v]);
}
void put2(int v, int x){
B[v] = min(B[v],x);
A[v] = min(A[v] , B[v]);
}
void push(int v){
put1(v+v,A[v]); put1(v+v+1,A[v]); A[v] = 0;
put2(v+v,B[v]); put2(v+v+1,B[v]); B[v] = N;
}
void f(int v, int tl, int tr){
if(tl == tr) { T[tl] = A[v]; return; }
push(v); f(v+v,tl,tm); f(v+v+1,tm+1,tr);
}
void up(int v, int tl, int tr, int l, int r, int x, int h){
if(tl > r || tr < l) return;
if(tl >= l && tr <= r){
컴파일 시 표준 에러 (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... |