제출 #764888

#제출 시각아이디문제언어결과실행 시간메모리
764888vjudge1Roadside Advertisements (NOI17_roadsideadverts)C++17
7 / 100
1086 ms57700 KiB
// #pragma GCC optimize("O3,unroll-loops") // #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") #include <bits/stdc++.h> #define ent '\n' #define all(x) x.begin(), x.end() #define s second #define f first #define pb push_back typedef long long ll; using namespace std; const int maxn = 2e6 + 250; const int mod = 1e9 + 7; const int K = 400; const double Pi = acos(-1.0); const long double eps = 1e-9; #define int long long int a[maxn], f[maxn]; pair<int,int>p[maxn]; vector<pair<int,int>>g[maxn]; map<pair<int,int>,int>mp; void dfs(int v, int pa = 0) { for(auto to:g[v]) { if(to.f==pa)continue; p[to.f] = {v, to.s}; dfs(to.f, v); } } void chek(int a) { int sum = 0; while(a!=0) { f[mp[{p[a].f, a}]] = p[a].s; a = p[a].f; } } void solve() { int n, k, sum = 0; cin >> n; for(int i = 1;i < n; i++) { int u, v, w; cin >> u >> v >> w; u++,v++; g[u].pb({v, w}); g[v].pb({u, w}); mp[{u,v}]=i; mp[{v,u}]=i; } p[1] = {0, 0}; dfs(1); cin >> k; for(int i = 1;i <= k; i++) { int a, b, c, d, e, sum = 0; cin >> a >> b >> c >> d >> e; chek(a+1); chek(b+1); chek(c+1); chek(d+1); chek(e+1); for(int j = 1;j <= n; j++) { sum += f[j]; f[j] = 0; } cout << sum << ent; } } signed main () { ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); // freopen("position.in", "r" , stdin); // freopen("position.out", "w", stdout); int t = 1; // cin >> t; for(int i = 1;i <= t; i++) { // cout << "Case #" << i << ": "; solve(); } }

컴파일 시 표준 에러 (stderr) 메시지

roadsideadverts.cpp: In function 'void chek(long long int)':
roadsideadverts.cpp:29:9: warning: unused variable 'sum' [-Wunused-variable]
   29 |     int sum = 0;
      |         ^~~
roadsideadverts.cpp: In function 'void solve()':
roadsideadverts.cpp:36:15: warning: unused variable 'sum' [-Wunused-variable]
   36 |     int n, k, sum = 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...