結果
問題 | No.2820 Non-Preferred IUPAC Nomenclature |
ユーザー | downer |
提出日時 | 2024-07-26 23:35:36 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 757 bytes |
コンパイル時間 | 3,239 ms |
コンパイル使用メモリ | 252,236 KB |
実行使用メモリ | 813,884 KB |
最終ジャッジ日時 | 2024-07-26 23:35:45 |
合計ジャッジ時間 | 7,269 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<vector<int>> G(N); for(int i = 0; i < N; i++) { for(int j = 0; j < 4; j++) { string S; cin >> S; if(S == "H") continue; int v = stoi(S); v--; G[i].push_back(v); G[v].push_back(i); } } string ans; auto rec = [&](auto f, int v, int p=-1) -> void { for(int nv : G[v]) { if(nv == p) continue; ans += "("; f(f, nv, v); ans += ")"; } ans += "methyl"; }; rec(rec, 0); ans.pop_back(); ans.pop_back(); ans += "ane"; cout << ans << endl; return 0; }