結果
問題 | No.2820 Non-Preferred IUPAC Nomenclature |
ユーザー | makichan |
提出日時 | 2024-07-27 00:05:34 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,003 bytes |
コンパイル時間 | 5,450 ms |
コンパイル使用メモリ | 311,492 KB |
実行使用メモリ | 814,612 KB |
最終ジャッジ日時 | 2024-07-27 00:05:45 |
合計ジャッジ時間 | 8,630 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,908 KB |
testcase_01 | AC | 4 ms
7,856 KB |
testcase_02 | AC | 3 ms
7,868 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#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)"; string ans; void dfs(int x,int p){ for(auto y:G[x])if(y!=p){ ans+=head; dfs(y,x); ans+=tail; } ans+=m; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; rep(i,0,n){ char c; rep(j,0,4){ cin >> c; if(c!='H'){ G[i].push_back(c-'1'); } } } // rep(i,0,n){ // cout << i << "\n"; // for(auto x:G[i])cout << x << " "; // cout <<"\n"; // } dfs(0,-1); ans+="ane"; cout << ans; }