Submission #113706

#TimeUsernameProblemLanguageResultExecution timeMemory
113706thebesCities (BOI16_cities)C++14
74 / 100
3423 ms262144 KiB
#include <bits/stdc++.h> using namespace std; const int MN = 1e5+5; typedef long long ll; typedef pair<ll,ll> pii; struct reeee{ll n, m, d;}; bool ww[MN][1<<6]; ll n, m, k, i, x, y, w, vs[MN][1<<6], ans = 1LL<<60; vector<pii> adj[MN]; vector<ll> heh; struct pq{bool operator()(const reeee&i,const reeee&j){return i.d>j.d;}}; priority_queue<reeee,vector<reeee>,pq> q; int main(){ for(scanf("%lld%lld%lld",&n,&k,&m),i=1;i<=k;i++){ scanf("%lld",&x); heh.push_back(x); } for(i=1;i<=m;i++){ scanf("%lld%lld%lld",&x,&y,&w); adj[x].push_back({y,w}); adj[y].push_back({x,w}); } memset(vs,0x3f,sizeof(vs)); for(i=0;i<heh.size();i++) q.push({heh[i], 1<<i, 0}); while(q.size()){ auto v = q.top(); q.pop(); if(v.m==(1<<k)-1) ans = min(ans, v.d); if(ww[v.n][v.m]) continue; vs[v.n][v.m] = v.d; ww[v.n][v.m] = 1; for(int mm=0;mm<(1<<k);mm++){ if(v.d+vs[v.n][mm]<vs[v.n][v.m|mm]){ vs[v.n][v.m|mm]=v.d+vs[v.n][mm]; q.push({v.n, v.m|mm, v.d+vs[v.n][mm]}); } } for(auto w : adj[v.n]){ if(v.d+w.second<vs[w.first][v.m]){ vs[w.first][v.m]=v.d+w.second; q.push({w.first, v.m, v.d+w.second}); } } } printf("%lld\n",ans); return 0; }

Compilation message (stderr)

cities.cpp: In function 'int main()':
cities.cpp:26:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(i=0;i<heh.size();i++)
             ~^~~~~~~~~~~
cities.cpp:16:39: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(scanf("%lld%lld%lld",&n,&k,&m),i=1;i<=k;i++){
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
cities.cpp:17:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lld",&x);
         ~~~~~^~~~~~~~~~~
cities.cpp:21:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lld%lld%lld",&x,&y,&w);
         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#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...