結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー Pres1dentPres1dent
提出日時 2024-07-26 22:19:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 206,224 KB
実行使用メモリ 21,528 KB
最終ジャッジ日時 2024-07-26 22:19:29
合計ジャッジ時間 8,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 251 ms
21,528 KB
testcase_05 AC 111 ms
13,480 KB
testcase_06 AC 226 ms
19,620 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n; cin >> n;
  vector to(n, vector<int>());
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < 4; j++) {
      string s; cin >> s;
      if (s == "H") continue;
      int k = stoi(s);
      k--;
//       cerr << "edge " <<  i << " to " << k << endl;
      to[i].emplace_back(k);
    }
  }
  for (int i = 0; i < n; i++) {
//     cerr << to[i].size() << endl;
  }
  string ans;
  auto dfs = [&](auto&& self, int v, int p) -> void {
//     cerr << "v " << v << endl;
    for (auto u : to[v]) {
//       cerr << "u " << u << " " << p << endl;
      if (u == p) continue;
      ans += "(";
      self(self, u, v);
      ans.erase(ans.begin() + ans.size() - 3, ans.end());
      ans += "yl)";
    }
//     cerr << "v " << v << " " << ans << endl;
    ans += "methane";
  };
  dfs(dfs, 0, -1);
  cout << ans << endl;
}
0