結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー Spica08Spica08
提出日時 2024-07-26 22:43:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 2,430 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 109,616 KB
実行使用メモリ 24,244 KB
最終ジャッジ日時 2024-07-26 22:43:43
合計ジャッジ時間 7,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 237 ms
24,244 KB
testcase_05 AC 112 ms
14,876 KB
testcase_06 AC 204 ms
21,892 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 18 ms
6,944 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 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 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,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <tuple>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <deque>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <cctype>
#include <functional>
#include <cassert>
using namespace std;

using ll = long long;
using ull = unsigned long long;
using Matrix = std::vector<std::vector<ll>>;
const int inf = 1000000000;
const ll INF = 1000000000000000000;
const ll mod = 998244353;
const ull mod_hash = (1UL << 61) - 1;
const std::vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1};
const std::vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1};

template<typename T>
struct Edge{
  int from, to, id;
  T cost;
  Edge(int from, int to, int id, T cost): from(from), to(to), id(id), cost(cost){}
};

template<typename T>
class WeightedGraph{
  public:
    WeightedGraph(int N): N(N), G(N){}
    void add_edge(int u, int v, int id, T cost, int zero_indexed = 0, int directed = 0){
      if (!zero_indexed) {u--; v--;}
      G[u].emplace_back(u, v, id, cost);
      if(!directed)G[v].emplace_back(v, u, id, cost);
    }
    int size()const{return G.size();};
    const std::vector<Edge<T>>& operator[](int i)const{return G[i];};
  private:
    int N;
    std::vector<std::vector<Edge<T>>> G;
};

class UnweightedGraph{
  public:
    UnweightedGraph(int N): N(N), G(N){}
    void read_edge(int zero_indexed = 0, int directed = 0){
      int u, v; std::cin >> u >> v; 
      add_edge(u, v, zero_indexed, directed);
    }
    void add_edge(int u, int v, int zero_indexed = 0, int directed = 0){
      if (!zero_indexed) {u--; v--;}
      G[u].push_back(v);
      if(!directed)G[v].push_back(u);
    }
    int size()const{return G.size();};
    const std::vector<int>& operator[](int i)const{return G[i];};
  private:
    int N;
    std::vector<std::vector<int>> G;
};

void dfs(UnweightedGraph &G, int n, int p, string &ans){
  for(int nxt : G[n]){
    if (nxt == p) continue;
    ans += "(";
    dfs(G, nxt, n, ans);
    ans += "yl)";
  }
  ans += "meth";
  return ;
}

int main(){
  int N; cin >> N;
  UnweightedGraph G(N);
  for(int i = 0; i < N; i++){
    for(int j = 0; j < 4; j++){
      string c; cin >> c;
      if (c != "H"){
        int v = stoi(c) - 1;
        G.add_edge(i, v, 1, 1);
      }
    }
  }
  string ans = "";
  dfs(G, 0, -1, ans);
  cout << ans + "ane"<< endl;
  return 0;
}
0