# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
857323 | zsombor | Floppy (RMI20_floppy) | C++17 | 79 ms | 25856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include "floppy.h"
using namespace std;
int n;
vector <int> v(8e4, -2e9);
vector <int> Log2(4e4, 0);
vector <vector <int>> st(8e4, vector <int> (16, 0));
string b;
vector <int> p;
void build_st() {
Log2.assign(4e4, 0);
for (int i = 2; i <= n; i++) Log2[i] = Log2[i / 2] + 1;
st.resize(8e4);
for (int i = 0; i < 8e4; i++) {
st[i].assign(16, 0);
st[i][0] = i;
}
for (int j = 1; j < 16; j++) {
for (int i = 0; i < n; i++) {
int x = st[i][j - 1], y = st[i + (1 << (j - 1))][j - 1];
st[i][j] = (v[x] > v[y] ? x : y);
}
}
}
int query_st(int l, int 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... |