# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
853337 | 2023-09-24T07:27:00 Z | aaronkim00 | 수족관 3 (KOI13_aqua3) | C++17 | 70 ms | 15912 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long #define all(v) v.begin(),v.end() const ll MOD = 1000000007; struct FLOOR{ int idx, x1, x2, y; }; vector<int> tree[300010]; int parent[300010]; ll w[300010]; ll val[300010]; const bool compare(const int x, const int y){ return val[x]>val[y]; } int dfs(int u){ int curr = u; for(int v: tree[u]){ int t = dfs(v); if(val[curr] < val[t]){ curr = t; } } val[curr] += w[u]; return curr; } int main(void){ int N, K; scanf("%d", &N); int t1, t2; scanf("%d %d", &t1, &t2); stack<FLOOR> st; st.push({0, 0, 0, -1}); int maxX = 0; for(int i=1; i<=N/2; i++){ int x1 = maxX, y = -1, x2 = maxX; if(i<N/2){ scanf("%d %d", &x1, &y); scanf("%d %d", &x2, &y); maxX = max(maxX, x2); } while(true){ FLOOR t = st.top(); st.pop(); if(t.y<y){ st.push(t); st.push({i, x1, x2, y}); break; } else if(t.y==y){ st.push(t); break; } else{ if(st.top().y < y){ parent[t.idx] = i; tree[i].push_back(t.idx); } else{ parent[t.idx] = st.top().idx; tree[st.top().idx].push_back(t.idx); } w[t.idx] = (ll)(t.y-max(st.top().y, y))*(ll)(x1-st.top().x2); } } } scanf("%d %d", &t1, &t2); scanf("%d", &K); for(int i=1; i<N/2; i++){ if(parent[i]==0&&w[i]>0){ dfs(i); } } /*for(int i=1; i<N/2; i++){ printf("%d: %d %lld %lld\n", i, parent[i], w[i], val[i]); for(int x: tree[i]){ printf("%d ", x); } printf("\n"); }*/ ll result = 0; vector<int> L; for(int i=1; i<N/2; i++){ L.push_back(i); } sort(all(L), compare); for(int i=0; i<K; i++){ result += val[L[i]]; } printf("%lld\n", result-maxX); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 11096 KB | Output is correct |
2 | Correct | 2 ms | 11100 KB | Output is correct |
3 | Incorrect | 2 ms | 11096 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 11100 KB | Output is correct |
2 | Correct | 3 ms | 11100 KB | Output is correct |
3 | Incorrect | 3 ms | 11100 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 65 ms | 14612 KB | Output is correct |
2 | Correct | 64 ms | 14760 KB | Output is correct |
3 | Incorrect | 67 ms | 15912 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 62 ms | 14652 KB | Output is correct |
2 | Correct | 63 ms | 14804 KB | Output is correct |
3 | Incorrect | 67 ms | 14800 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 62 ms | 14756 KB | Output is correct |
2 | Correct | 64 ms | 14804 KB | Output is correct |
3 | Incorrect | 70 ms | 15912 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |