結果
問題 | No.2301 Namorientation |
ユーザー | Meet Brahmbhatt |
提出日時 | 2023-05-14 18:31:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 190 ms / 3,000 ms |
コード長 | 1,878 bytes |
コンパイル時間 | 2,088 ms |
コンパイル使用メモリ | 183,520 KB |
実行使用メモリ | 39,040 KB |
最終ジャッジ日時 | 2024-05-07 13:14:16 |
合計ジャッジ時間 | 11,310 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 82 ms
20,216 KB |
testcase_13 | AC | 74 ms
18,432 KB |
testcase_14 | AC | 169 ms
31,136 KB |
testcase_15 | AC | 91 ms
22,016 KB |
testcase_16 | AC | 135 ms
27,264 KB |
testcase_17 | AC | 95 ms
20,648 KB |
testcase_18 | AC | 137 ms
27,648 KB |
testcase_19 | AC | 64 ms
17,536 KB |
testcase_20 | AC | 146 ms
27,520 KB |
testcase_21 | AC | 91 ms
21,504 KB |
testcase_22 | AC | 82 ms
39,040 KB |
testcase_23 | AC | 86 ms
38,412 KB |
testcase_24 | AC | 67 ms
32,640 KB |
testcase_25 | AC | 54 ms
24,792 KB |
testcase_26 | AC | 69 ms
31,040 KB |
testcase_27 | AC | 183 ms
31,276 KB |
testcase_28 | AC | 174 ms
31,144 KB |
testcase_29 | AC | 182 ms
31,232 KB |
testcase_30 | AC | 190 ms
31,232 KB |
testcase_31 | AC | 172 ms
31,232 KB |
コンパイルメッセージ
main.cpp: In function 'void solve()': main.cpp:50:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 50 | for (auto [to, id] : G[u]) { | ^ main.cpp: In lambda function: main.cpp:60:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 60 | for (auto [to, id] : G[u]) { | ^
ソースコード
/** * - Meet Brahmbhatt * - Hard work always pays off **/ #include"bits/stdc++.h" using namespace std; #ifdef MeetBrahmbhatt #include "debug.h" #else #define dbg(...) 72 #endif #define endl "\n" #define int long long const long long INF = 4e18; const int32_t M = 1e9 + 7; const int32_t MM = 998244353; void solve() { int n; cin >> n; vector<vector<pair<int, int>>> G(n); vector<int> deg(n); vector<array<int, 2>> E(n); for (int i = 0; i < n; i++) { int u, v; cin >> u >> v; --u; --v; deg[u]++; deg[v]++; E[i] = {u, v}; G[u].push_back({v, i}); G[v].push_back({u, i}); } vector<int> vis(n); queue<int> Q; for (int i = 0; i < n; ++i) { if (deg[i] == 1) { vis[i] = 1; Q.push(i); } } vector<string> ans(n); while (!Q.empty()) { int u = Q.front(); Q.pop(); deg[u] = 0; for (auto [to, id] : G[u]) { if(deg[to] > 1) ans[id] = E[id][0] == u ? "->" : "<-"; if (!vis[to] and --deg[to] == 1) { vis[to] = 1; Q.push(to); } } } function<void(int, int)> dfs = [&](int u, int par) { for (auto [to, id] : G[u]) { if (deg[to] > 1 and to != par) { deg[to]--; ans[id] = E[id][0] == u ? "->" : "<-"; dfs(to, u); break; } } }; for (int i = 0; i < n; i++) { if (!vis[i]) { dfs(i, -1); break; } } for (int i = 0; i < n; i++) { cout << ans[i] << "\n"; } } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout << fixed << setprecision(9); int tt = 1; // cin >> tt; while (tt--) solve(); return 0; }