結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー makichanmakichan
提出日時 2024-07-27 00:13:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 5,596 ms
コンパイル使用メモリ 311,200 KB
実行使用メモリ 18,328 KB
最終ジャッジ日時 2024-07-27 00:13:19
合計ジャッジ時間 11,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,864 KB
testcase_01 AC 5 ms
7,976 KB
testcase_02 AC 5 ms
7,900 KB
testcase_03 AC 4 ms
8,044 KB
testcase_04 AC 136 ms
18,328 KB
testcase_05 AC 65 ms
14,032 KB
testcase_06 AC 116 ms
17,152 KB
testcase_07 AC 14 ms
8,864 KB
testcase_08 AC 8 ms
8,520 KB
testcase_09 AC 11 ms
8,788 KB
testcase_10 AC 5 ms
7,992 KB
testcase_11 AC 5 ms
8,028 KB
testcase_12 AC 5 ms
7,956 KB
testcase_13 AC 4 ms
7,968 KB
testcase_14 AC 5 ms
7,892 KB
testcase_15 AC 5 ms
7,900 KB
testcase_16 AC 4 ms
8,048 KB
testcase_17 AC 5 ms
7,900 KB
testcase_18 AC 4 ms
7,928 KB
testcase_19 AC 5 ms
7,904 KB
testcase_20 AC 5 ms
8,076 KB
testcase_21 AC 4 ms
7,900 KB
testcase_22 AC 4 ms
7,920 KB
testcase_23 AC 5 ms
7,900 KB
testcase_24 AC 4 ms
7,972 KB
testcase_25 AC 4 ms
7,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

vector<vector<int>> G(200000);

string m="meth",head="(",tail="yl)";
void dfs(int x,int p){
    for(auto y:G[x])if(y!=p){
        cout << head;
        dfs(y,x);
        cout << tail;
    }
    cout << m;
}
int to_int(string s){
    int p=0;
    for(char c:s)p*=10,p+=c-'0';
    return p;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;
    rep(i,0,n){
        string s;
        rep(j,0,4){
            cin >> s;
            if(s!="H"){
                G[i].push_back(to_int(s)-1);
            }
        }
    }
    // rep(i,0,n){
    //     cout << i << "\n";
    //     for(auto x:G[i])cout << x << " ";
    //     cout <<"\n";
    // }
    dfs(0,-1);
    cout << "ane";
}
0