結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー InTheBloomInTheBloom
提出日時 2024-07-26 22:23:04
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,368 ms / 2,000 ms
コード長 1,492 bytes
コンパイル時間 1,193 ms
コンパイル使用メモリ 96,912 KB
実行使用メモリ 36,232 KB
最終ジャッジ日時 2024-07-26 22:23:15
合計ジャッジ時間 9,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1,368 ms
36,232 KB
testcase_05 AC 642 ms
21,300 KB
testcase_06 AC 1,178 ms
32,772 KB
testcase_07 AC 120 ms
6,944 KB
testcase_08 AC 61 ms
6,940 KB
testcase_09 AC 93 ms
6,944 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main () {
    int N; cin >> N;
    vector<vector<int>> graph(N);
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < 4; j++) {
            string str; cin >> str;
            int to;
            try {
                to = stoi(str) - 1;
            }
            catch (...) {
                continue;
            }

            graph[i].push_back(to);
        }
    }

    // それぞれのノードで名前を構築するとしんどいので、dfs巡回順だけ見て、各自の受け持ち分だけ構築する。
    vector<string> prefix(N), suffix(N);

    {
        auto dfs = [&] (auto self, int pos, int par) -> void {
            bool has = false;
            for (auto nex: graph[pos]) {
                if (nex == par) continue;
                self(self, nex, pos);
            }

            if (par != -1) {
                prefix[pos] = "(";
                suffix[pos] = "methyl)";
            }
            else {
                suffix[pos] = "methane";
            }
        };

        dfs(dfs, 0, -1);
    }

    string ans = "";
    {
        auto dfs = [&] (auto self, int pos, int par) -> void {
            ans += prefix[pos];

            for (auto nex: graph[pos]) {
                if (nex == par) continue;
                self(self, nex, pos);
            }

            ans += suffix[pos];
        };

        dfs(dfs, 0, -1);
    }

    cout << ans << "\n";
}
0