# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
361389 | pure_mem | Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) | C++14 | 1131 ms | 91240 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include <algorithm>
#include <stack>
#define X first
#define Y second
#define MP make_pair
#define ll long long
using namespace std;
const int N = 1e6 + 3;
int n, q, w[N], ans[N], fw[N];
vector< pair< pair<int, int>, int > > aybar[N];
void upd(int v, int val){
for(;v <= n;v |= v + 1)
fw[v] = max(fw[v], val);
}
int get(int v){
int val = 0;
for(;v >= 0;v = (v & (v + 1)) - 1)
val += fw[v];
return val;
}
int main () {
scanf("%d %d", &n, &q);
for(int i = 1;i <= n;i++)
scanf("%d", w + i);
for(int i = 1, l, r, x;i <= q;i++){
scanf("%d %d %d", &l, &r, &x);
aybar[l].push_back(MP(MP(r, x), i));
}
stack<int> b;
for(int i = n;i >= 1;i--){
while(!b.empty() && w[i] > w[b.top()])
upd(b.top(), w[b.top()] + w[i]), b.pop();
b.push(i);
for(pair< pair<int, int>, int > tmp: aybar[i])
ans[tmp.Y] = get(tmp.X.X) <= tmp.X.Y;//, cerr << get(n - tmp.X.X + 1) << " " << tmp.Y << "\n";
}
for(int i = 1;i <= q;i++)
printf("%d\n", ans[i]);
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |