# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
459580 | liza | Fountain (eJOI20_fountain) | C++14 | 288 ms | 19804 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int MAX = 19;
int dp[100005][MAX];
int water[100005][MAX];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, q, diam, a, b;
cin >> n >> q;
priority_queue<pair<int, int>> pq; // diameter, id
for (int i = 1; i <= n; i++) {
cin >> diam >> water[i][0];
while(!pq.empty() && -pq.top().first < diam) {
dp[pq.top().second][0] = i;
pq.pop();
}
pq.push({-diam, i});
}
while(!pq.empty()) {
dp[pq.top().second][0] = 0;
pq.pop();
}
dp[0][0] = 0;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |