結果
問題 | No.2301 Namorientation |
ユーザー | Meet Brahmbhatt |
提出日時 | 2023-05-14 18:15:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,845 bytes |
コンパイル時間 | 2,015 ms |
コンパイル使用メモリ | 184,256 KB |
実行使用メモリ | 39,040 KB |
最終ジャッジ日時 | 2024-05-07 13:04:27 |
合計ジャッジ時間 | 12,103 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 85 ms
39,040 KB |
testcase_23 | AC | 82 ms
38,528 KB |
testcase_24 | AC | 67 ms
32,768 KB |
testcase_25 | AC | 56 ms
24,664 KB |
testcase_26 | AC | 69 ms
31,164 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
コンパイルメッセージ
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:59:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 59 | 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]) { 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; }