Submission #764901

#TimeUsernameProblemLanguageResultExecution timeMemory
764901vjudge1Roadside Advertisements (NOI17_roadsideadverts)C++17
7 / 100
1055 ms8928 KiB
#include <bits/stdc++.h> using namespace std; #pragma comment(linker, "/stack:2000000000") #pragma GCC optimize("Ofast,unroll-loops,fast-math,O3") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native") typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll,ll> pll; #define precise(a) cout<<fixed<<setprecision(a) #define sz size() #define ff first #define ss second #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(), a.rend() #define pb push_back // t1 const ll mod = ll(1e9)+7; //(b + (a%b)) % b (to mod -1%(10^9+7) correctly in c++ its -1 but its suppose to be 10^9+6 const ll MOD = 998244353; // (a%mod)*(binpow(b,mod-2,mod) = (a/b)%mod const ll N = ll(5e4)+10; const ll inf = 1e9; const ld eps = 1e-15L; const ll B = 400; // const ld pie = acos(-1.0); ll lcm(ll a, ll b){ return (a / __gcd(a,b))*b; } ll binpow(ll a, ll b, ll m){ ll res=1;a%=m; while(b>0){ if(b&1)res=(res*a)%m; a=(a*a)%m; b/=2; } return res%m;} void Freopen(string Key){ freopen((Key+".in").c_str(), "r", stdin); freopen((Key+".out").c_str(), "w", stdout); } const int maxq = 10005; int n, q, dis[N], ver[maxq][5], up[30][N], depth[N], used[N]; ll sum[N]; vector<int> need; vector<pair<int, int> >g[N]; void dfs(int v, int p = -1) { if(p != -1) depth[v] = depth[p] + 1; up[0][v] = p; for(int j = 1; j<16; j++) up[j][v] = up[j-1][up[j-1][v]]; for(auto got : g[v]) { int to = got.ff, w = got.ss; if(to == p) continue; dis[to] = dis[v] + w; dfs(to, v); } } int lca(int u, int v) { if(depth[u] < depth[v]) swap(u, v); // u is more under than v int dif = depth[u] - depth[v]; for(int j = 16; j>=0; j--) { if(dif & (1<<j)) { u = up[j][u]; } } if(u == v) return u; for(int j = 16; j>=0; j--) { if(up[j][u] != up[j][v]) { u = up[j][u]; v = up[j][v]; } } return up[0][u]; } ll dist(int u, int v) { return dis[u] + dis[v] - 2 * dis[lca(u, v)]; } void Baizho() { cin>>n; for(int i = 1; i<=n-1; i++) { int u, v, w; cin>>u>>v>>w; g[u].pb({v, w}); g[v].pb({u, w}); } cin>>q; dfs(0); for(int i = 1; i<=q; i++) { for(int j = 0; j<5; j++) { cin>>ver[i][j]; } sort(ver[i], ver[i]+5); ll ans = inf; do { ll res = 0; set<pair<int, int> > did; for(int j = 0; j<4; j++) { int x = ver[i][j], y = ver[i][j+1]; int z = lca(x, y); if(did.find(make_pair(x, z)) == did.end() && did.find(make_pair(z, x)) == did.end()) { res += dist(x, z); did.insert(make_pair(x, z)); } if(did.find(make_pair(z, y)) == did.end() && did.find(make_pair(y, z)) == did.end()) { res += dist(y, z); did.insert(make_pair(z, y)); } } ans = min(ans, res); } while(next_permutation(ver[i], ver[i]+5)); cout<<ans<<"\n"; } } int main() { // Freopen("ladder"); ios_base::sync_with_stdio(false); cin.tie(0);cout.tie(0); // precalc(); int ttt = 1; // cin>>ttt; for(int i=1; i<=ttt; i++) {Baizho(); } }

Compilation message (stderr)

roadsideadverts.cpp:4: warning: ignoring '#pragma comment ' [-Wunknown-pragmas]
    4 |  #pragma comment(linker, "/stack:2000000000")
      | 
roadsideadverts.cpp: In function 'void Freopen(std::string)':
roadsideadverts.cpp:33:34: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   33 | void Freopen(string Key){ freopen((Key+".in").c_str(), "r", stdin); freopen((Key+".out").c_str(), "w", stdout); }
      |                           ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
roadsideadverts.cpp:33:76: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   33 | void Freopen(string Key){ freopen((Key+".in").c_str(), "r", stdin); freopen((Key+".out").c_str(), "w", stdout); }
      |                                                                     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...