結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-04-06 11:58:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 1,066 ms
コンパイル使用メモリ 103,512 KB
実行使用メモリ 24,664 KB
最終ジャッジ日時 2024-07-26 16:27:36
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 128 ms
24,664 KB
testcase_05 AC 60 ms
15,960 KB
testcase_06 AC 111 ms
24,404 KB
testcase_07 AC 12 ms
5,760 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 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, n / 2, -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