# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
783597 | Owen11 | Foehn Phenomena (JOI17_foehn_phenomena) | C++14 | 395 ms | 11320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
# define int long long
# define fir first
# define sec second
# define pb push_back
const int cnst = 2e5+5;
bool mutipletestcase = 0;
//bool debug = false;
int n, q, s, t;
int all[cnst];
int arr[cnst];
int posi[cnst*4];
int lazy[cnst*4];
int merge(int a, int b) {
return a+b;
}
void build(int a, int b, int id) {
if(a == b) {
if(arr[a] < 0) posi[id] = s*abs(arr[a]);
else posi[id] = t*abs(arr[a]);
return;
}
int mid = (a+b)/2;
build(a, mid, id*2);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |