제출 #938439

#제출 시각아이디문제언어결과실행 시간메모리
938439Gromp15From Hacks to Snitches (BOI21_watchmen)C++17
15 / 100
6096 ms104464 KiB
#include <bits/stdc++.h> #define ll long long #define ar array #define db double #define all(x) x.begin(), x.end() #define sz(x) (int)x.size() using namespace std; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); #define rint(l, r) uniform_int_distribution<int>(l, r)(rng) template<typename T> bool ckmin(T &a, const T &b) { return a > b ? a = b, 1 : 0; } template<typename T> bool ckmax(T &a, const T &b) { return a < b ? a = b, 1 : 0; } void test_case() { int n, m; cin >> n >> m; vector<vector<int>> adj(n+1); for (int i = 0; i < m; i++) { int x, y; cin >> x >> y; adj[x].push_back(y); adj[y].push_back(x); } vector<int> size(n+1, 1), who(n+1, -1), id(n+1, -1); int Q; cin >> Q; for (int i = 0; i < Q; i++) { int cur; cin >> cur; for (int j = 0; j < cur; j++) { int x; cin >> x; size[x] = cur; who[x] = j; id[x] = i; } } // if size[v] // then, dist[v] % size[v] != who[v] vector<vector<int>> dist(n+1); for (int i = 1; i <= n; i++) { dist[i].resize(size[i], 1e9); } auto can_wait = [&](int l, int r, int v) -> bool { if (size[v] == 1) return 1; int L = l % size[v], R = r % size[v]; // L --> R if (L <= R) { return who[v] < L || who[v] > R; } else { return R < who[v] && who[v] < L; } }; // number of nodes = N + sum(L) const int N = 1501; // max edge length = 1500 vector<vector<ar<int, 2>>> queues(N); queues[0].push_back({1, 0}); dist[1][0] = 0; int max_dist = 0; for (int cost = 0; cost <= max_dist; cost++) { int use = cost % N; while (queues[use].size()) { auto [v, time] = queues[use].back(); queues[use].pop_back(); for (int u : adj[v]) { // cost + i - 1 = who[u] (mod size[u]) // [cost, cost + i - 1] mod size[u] != who[u] int res; if (size[v] > 1) { if (cost % size[v] < who[v]) { res = who[v] - cost % size[v]; } else { res = who[v] + (size[v] - cost % size[v]); } } else res = 1e9; for (int i = 1; i <= min(res, size[u]); i++) { if ((cost + i) % size[u] != who[u] && (id[u] != id[v] || ((who[u] + 1) % size[u] != who[v]) || ((cost + i - 1) % size[u] != who[u])) && ckmin(dist[u][(cost + i) % size[u]], cost + i)) { queues[(cost + i) % N].push_back({u, (cost + i) % size[u]}); ckmax(max_dist, cost + i); } } } } } int ans = *min_element(all(dist[n])); if (ans == 1e9) { cout << "impossible\n"; return; } cout << ans << '\n'; } int main() { cin.tie(0)->sync_with_stdio(0); int t = 1; // cin >> t; while (t--) test_case(); }

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

watchmen.cpp: In function 'void test_case()':
watchmen.cpp:39:7: warning: variable 'can_wait' set but not used [-Wunused-but-set-variable]
   39 |  auto can_wait = [&](int l, int r, int v) -> bool {
      |       ^~~~~~~~
#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...