結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-04-04 22:17:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 103,640 KB
実行使用メモリ 25,260 KB
最終ジャッジ日時 2024-07-26 16:27:11
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 109 ms
25,260 KB
testcase_05 AC 54 ms
15,488 KB
testcase_06 AC 94 ms
22,752 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 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,944 KB
testcase_25 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdint>
#include <iostream>
#include <ranges>
#include <vector>
#include <string>
#include <array>

void solve() {
    int n; std::cin >> n;

    std::vector<std::vector<int>> tree(n);

    for(const int i : std::views::iota(0, n)) {
        for([[maybe_unused]] const int _ : std::views::iota(0, 4)) {
            std::string c; std::cin >> c;
            if(c == "H") continue;
            tree[i].emplace_back(std::stoi(c) - 1);
        }
    }

    std::string ans;

    auto dfs = [&](auto&& dfs, int v, int p) -> void {
        for(const int nv : tree[v]) {
            if(nv < 0 || nv == p) continue;
            ans += "(";
            dfs(dfs, nv, v);
            ans += "yl)";
        }
        ans += "meth";
    };
    dfs(dfs, 0, -1);

    std::cout << ans + "ane" << "\n";
}

int main() {
    solve();
    return 0;
}

__attribute__((constructor)) inline void fast_io() { std::ios::sync_with_stdio(false), std::cin.tie(nullptr); }
0