# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
847647 | 2023-09-10T06:00:25 Z | KN200711 | Cyberland (APIO23_cyberland) | C++17 | 93 ms | 23760 KB |
#include "cyberland.h" # include <bits/stdc++.h> # define fi first # define se second using namespace std; bool vis[100001]; vector< pair<int, int> > edge[100001]; void dfs(int a) { vis[a] = 1; for(auto p : edge[a]) { if(!vis[p.fi]) dfs(p.fi); } } double solve(int N, int M, int K, int H, vector<int> x, vector<int> y, vector<int> c, vector<int> arr) { K = min(K, 70); for(int i=0;i<N;i++) { vis[i] = 0; edge[i].clear(); } for(int i=0;i<x.size();i++) { edge[x[i]].push_back(make_pair(y[i], c[i])); edge[y[i]].push_back(make_pair(x[i], c[i])); } dfs(0); vector< vector<double> > dp; dp.resize(K + 1); for(int i=0;i<=K;i++) { dp[i].resize(N); for(int c=0;c<N;c++) dp[i][c] = -1; } priority_queue< pair<double, pair<int, int> > > PQ; for(int d=0;d<N;d++) { if(d == 0 || (arr[d] == 0 && vis[d])) PQ.push(make_pair(0, make_pair(0, d))); } while(!PQ.empty()) { double a = PQ.top().fi; int nm = PQ.top().se.fi, pos = PQ.top().se.se; PQ.pop(); if(nm > K) continue; if(dp[nm][pos] != -1) continue; dp[nm][pos] = -a; // cout<<nm<<" "<<pos<<" "<<a<<endl; if(pos == H) break; for(auto p : edge[pos]) { if(arr[p.fi] == 0) continue; else if(arr[p.fi] == 1 && dp[nm][p.fi] == -1) PQ.push(make_pair(a - ((double) p.se), make_pair(nm, p.fi))); else if(arr[p.fi] == 2) { if(nm + 1 <= K && dp[nm+1][pos] == -1)PQ.push(make_pair((a - (double) p.se) / ((double) 2), make_pair(nm + 1, p.fi))); if(dp[nm][pos] == -1) PQ.push(make_pair((a - (double) p.se), make_pair(nm + 1, p.fi))); } } } double ans = 1e18; for(int v=0;v<=K;v++) { if(dp[v][H] != -1) ans = min(ans, dp[v][H]); } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 24 ms | 2888 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 3164 KB | Correct. |
2 | Correct | 21 ms | 4188 KB | Correct. |
3 | Correct | 19 ms | 4184 KB | Correct. |
4 | Correct | 22 ms | 4176 KB | Correct. |
5 | Correct | 20 ms | 4144 KB | Correct. |
6 | Correct | 18 ms | 6716 KB | Correct. |
7 | Correct | 23 ms | 6404 KB | Correct. |
8 | Correct | 13 ms | 9560 KB | Correct. |
9 | Correct | 22 ms | 3672 KB | Correct. |
10 | Correct | 21 ms | 3676 KB | Correct. |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 3176 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 79 ms | 23760 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 3256 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 22 ms | 3208 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 51 ms | 3264 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 93 ms | 3740 KB | Wrong Answer. |
2 | Halted | 0 ms | 0 KB | - |