# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
557084 | lunchbox | 역사적 조사 (JOI14_historical) | C++17 | 737 ms | 8636 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
https://oj.uz/problem/view/JOI14_historical
역사적 조사 (Historical)
*/
#include <bits/stdc++.h>
using namespace std;
using LL = long long;
const int N = 100000, B = 350, Q = 100000;
vector<array<int, 3>> qq[(N - 1) / B + 1];
int kk[N], aa_[N];
stack<pair<LL, int>> stk;
void add(int a) {
kk[a]++;
stk.push({max(stk.top().first, (LL) kk[a] * aa_[a]), a});
}
void pop() {
kk[stk.top().second]--;
stk.pop();
}
LL best() {
return stk.top().first;
}
void run() {
static LL ans[Q];
static int aa[N];
컴파일 시 표준 에러 (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... |