# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
362620 | ngpin04 | 벽 (IOI14_wall) | C++14 | 1557 ms | 69612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "wall.h"
#define fi first
#define se second
#define mp make_pair
using namespace std;
const int N = 2e6 + 5;
pair <int, int> st[4 * N];
int ans[N];
int op[N];
int l[N];
int r[N];
int h[N];
int n,k;
void dolazy(int id)
{
for (int i = (id << 1); i <= (id << 1 | 1); i++)
{
st[i].fi = max(st[i].fi, st[id].fi);
st[i].se = min(st[i].se, st[id].se);
if (st[i].fi > st[i].se)
{
if (st[i].fi == st[id].fi)
st[i].se = st[i].fi;
# | 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... |