Submission #784041

#TimeUsernameProblemLanguageResultExecution timeMemory
784041ZHIRDILBILDIZCyberland (APIO23_cyberland)C++17
44 / 100
3072 ms37852 KiB
#include<bits/stdc++.h> #include "cyberland.h" #define ll long long #define fi first #define se second using namespace std ; const int N = 1e5 ; bool us[N] ; double dist[N], ds[N][31] ; vector<int> abu ; vector<pair<int, int>> v[N] ; set<pair<double, int>> s ; set<pair<pair<double, int>, int>> pq ; void deikstra() { for(int i = 0 ; i < N ; i++) dist[i] = 1e18 ; for(auto i : s) dist[i.se] = 0 ; while(s.size()) { pair<double, int> p = *s.begin() ; s.erase(s.begin()) ; if(us[p.se]) continue ; us[p.se] = 1 ; for(auto i : v[p.se]) { if(us[i.fi] || dist[i.fi] <= p.fi + i.se) continue ; dist[i.fi] = p.fi + i.se ; s.insert({dist[i.fi], i.fi}) ; } } } void for_more_point(int k) { for(int i = 0 ; i < N ; i++) for(int j = 0 ; j <= k ; j++) ds[i][j] = 1e18 ; ds[0][k] = 0 ; pq.insert({{0, 0}, k}) ; while(pq.size()) { auto p = *pq.begin() ; double dis = p.fi.fi ; int city = p.fi.se, kn = p.se ; // cout << fixed << setprecision(9) << dis << ' ' << city << ' ' << kn << "\n_________________\n" ; pq.erase(pq.begin()) ; if(us[city]) continue ; for(auto i : v[city]) { // cout<<"abu1\n" ; if(dis + i.se < ds[i.fi][kn]) { ds[i.fi][kn] = dis + i.se ; pq.insert({{ds[i.fi][kn], i.fi}, kn}) ; } // cout<<"abu2\n" ; if(kn && !abu[i.fi] && ds[i.fi][kn - 1]) { ds[i.fi][kn - 1] = 0 ; pq.insert({{0, i.fi}, kn - 1}) ; } // cout<<"abu3\n" ; if(kn && abu[i.fi] == 2 && ds[i.fi][kn - 1] >= (dis + i.se) / 2) { ds[i.fi][kn - 1] = (dis + i.se) / 2 ; pq.insert({{ds[i.fi][kn - 1], i.fi}, kn - 1}) ; } } } } double solve(int n, int m, int k, int h, vector<int> x, vector<int> y, vector<int> c, vector<int> arr) { bool flag1 = 0, flag2 = 0, flag3 = 0 ; s.clear() ; for(int i = 0 ; i < n ; i++) { us[i] = 0 ; dist[i] = 0 ; v[i].clear() ; if(arr[i] != 1)flag1 = 1 ; if(arr[i] == 2)flag2 = 1 ; if(x[i] != i || y[i] != i + 1)flag3 = 1 ; } for(int i = 0 ; i < m ; i++) { v[x[i]].push_back({y[i], c[i]}) ; v[y[i]].push_back({x[i], c[i]}) ; } if(!flag1) { s.insert({0, 0}) ; deikstra() ; if(dist[h] == 1e18) return -1 ; else return dist[h] ; } if(!flag2) { us[h] = 1 ; s.insert({0, 0}) ; deikstra() ; for(int i = 0 ; i < n ; i++) { if(us[i] && !arr[i] || !i) s.insert({0, i}) ; us[i] = 0 ; } deikstra() ; if(dist[h] == 1e18) return -1 ; else return dist[h] ; } abu = arr ; us[h] = 1 ; for_more_point(k) ; double ans = 1e18 ; for(int i = 0 ; i <= k ; i++) ans = min(ans, ds[h][i]) ; if(ans == 1e18)return -1 ; else return ans ; } //signed main() //{ // ios_base::sync_with_stdio( 0 ) ; // cin.tie( 0 ) ; // cout.tie( 0 ) ; // int t ; // cin >> t ; // while(t--) // { // int n, m, k, h ; // cin >> n >> m >> k >> h ; // vector<int> a(m), b(m), c(m), arr(n) ; // for(int i = 0 ; i < n ; i++) // cin >> arr[i] ; // for(int i = 0 ; i < m ; i++) // cin >> a[i] >> b[i] >> c[i] ; // cout << fixed << setprecision(9) << solve(n, m, k, h, a, b, c, arr) << '\n' ; // } // return 0 ; //} //1 //4 4 30 //3 //1 0 2 1 //0 1 5 //0 2 4 //1 3 2 //2 3 4

Compilation message (stderr)

cyberland.cpp: In function 'double solve(int, int, int, int, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
cyberland.cpp:109:22: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  109 |             if(us[i] && !arr[i] || !i)
cyberland.cpp:77:32: warning: variable 'flag3' set but not used [-Wunused-but-set-variable]
   77 |     bool flag1 = 0, flag2 = 0, flag3 = 0 ;
      |                                ^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...