結果
問題 | No.2820 Non-Preferred IUPAC Nomenclature |
ユーザー | れもん丸 |
提出日時 | 2024-07-26 22:00:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,362 bytes |
コンパイル時間 | 2,608 ms |
コンパイル使用メモリ | 213,628 KB |
実行使用メモリ | 188,480 KB |
最終ジャッジ日時 | 2024-07-26 22:00:12 |
合計ジャッジ時間 | 6,730 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
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> using namespace std; #define rep(i,n) for (long long i = 0; i < n; ++i) using ll = long long; constexpr ll INF = 1ll<<30; constexpr ll longINF = 1ll<<60; constexpr ll MOD = 998244353; constexpr bool debug = false; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } //---------------------------------// string GetName(vector<set<int>> Alkane, int root){ string name = ""; vector<set<int>> ChildAlkane = Alkane; ChildAlkane[root].clear(); for (int child : Alkane[root]){ ChildAlkane[child].erase(root); } for (int child : Alkane[root]){ string ChildName = GetName(ChildAlkane, child); for (int cnt = 0; cnt < 3; cnt++) ChildName.pop_back(); name += "(" + ChildName + "yl)"; } name += "methane"; return name; } int main(){ int N; cin >> N; vector<set<int>> Alkane(N, set<int>()); for (int i = 0; i < N; ++i){ for (int j = 0; j < 4; ++j){ char c; cin >> c; if (c != 'H'){ Alkane[i].insert(c-'1'); } } } cout << GetName(Alkane, 0) << endl; return 0; }