제출 #1030133

#제출 시각아이디문제언어결과실행 시간메모리
1030133SamuellH12Bitaro’s Party (JOI18_bitaro)C++14
7 / 100
1628 ms524288 KiB
#include <bits/stdc++.h> #define optimize ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL) #define ALL(x) x.begin(), x.end() #define endl "\n" #define vi vector<int> #define pii pair<int,int> const int MAXN = 1e5 + 5; const int SQRT = 150; using namespace std; int block[MAXN], tempo = 0; vi trafo[MAXN]; set<pii> best[MAXN]; vi order; int deg[MAXN]; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); void get_order(int n){ queue<int> fila; for(int i=1; i<=n; i++) if(deg[i] == 0) fila.emplace(i); while(!fila.empty()) { auto u = fila.front(); fila.pop(); order.emplace_back(u); for(auto v : trafo[u]) if(--deg[v] == 0) fila.emplace(v); shuffle(ALL(trafo[u]), rng); } reverse(ALL(order)); } void precalc(){ for(auto u : order) { for(auto v : trafo[u]) { for(auto [x, w] : best[v]) { if(best[u].size() >= SQRT && (x-1) > best[u].rbegin()->first) break; best[u].emplace(x-1, w); if(best[u].size() > SQRT) best[u].erase(--(best[u].end())); } best[u].emplace(-1, v); } while(best[u].size() > SQRT) best[u].erase(--(best[u].end())); } } int dp[MAXN]; int solve(int w){ for(auto u : order) { dp[u] = (block[u] == tempo ? -1 : 0); for(auto v : trafo[u]) if(~dp[v]) dp[u] = max(dp[u], dp[v]+1); if(u == w) break; } return dp[w]; } int main(){ optimize; int n, m, q; cin >> n >> m >> q; for(int i=0, u, v; i<m; i++) { cin >> u >> v; trafo[v].emplace_back(u); deg[u]++; } get_order(n); precalc(); int t, y; while(q--) { tempo++; cin >> t >> y; for(int i=0, x; i<y; i++) cin >> x, block[x] = tempo; int ans = -1; for(auto [x, w] : best[t]) if(block[w] != tempo) { ans = -x; break; } if(ans == -1) ans = solve(t); cout << ans << endl; } return 0; }

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

bitaro.cpp: In function 'void precalc()':
bitaro.cpp:47:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   47 |    for(auto [x, w] : best[v])
      |             ^
bitaro.cpp: In function 'int main()':
bitaro.cpp:107:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
  107 |   for(auto [x, w] : best[t])
      |            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...