結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー kokoseikokosei
提出日時 2024-07-27 09:12:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 89,780 KB
実行使用メモリ 22,340 KB
最終ジャッジ日時 2024-07-27 09:12:45
合計ジャッジ時間 6,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 108 ms
22,340 KB
testcase_05 AC 56 ms
14,100 KB
testcase_06 AC 94 ms
20,484 KB
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;

int N;
vector<int> G[202020];
void dfs(int v, int p, string& ans){
    for(int nv : G[v]){
        if(nv == p)continue;
        ans += "(";
        dfs(nv, v, ans);
        ans.erase(ans.end() - 3, ans.end());
        ans += "yl)";
    }
    ans += "methane";
}
int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> N;
    for(int i = 0;i < N;i++){
        for(int j = 0;j < 4;j++){
            string c; cin >> c;
            if(c == "H")continue;
            int v = stoi(c) - 1;
            G[i].push_back(v);
        }
    }
    string ans = "";
    dfs(0, -1, ans);
    cout << ans << endl;
    return 0;
}
0