結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー Nzt3Nzt3
提出日時 2024-07-26 22:07:05
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 2,797 ms
コンパイル使用メモリ 202,856 KB
実行使用メモリ 13,624 KB
最終ジャッジ日時 2024-07-26 22:07:14
合計ジャッジ時間 8,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)

void dfs(const vector<array<int,4>>& A,int v,int p,string& ret,int root=0){
  if(!root){
    ret+='(';
  }
  rep(i,4){
    if(A[v][i]!=p&&A[v][i]!=-1){
      dfs(A,A[v][i],v,ret);
    }
  }
  if(root){
    ret+="methane";
  }else{
    ret+="methyl)";
  }
  return;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector A(N,array<int,4>());
  rep(i,N){
    rep(j,4){
      string S;
      cin>>S;
      if(S=="H"){
        A[i][j]=-1;
      }else{
        A[i][j]=stoi(S)-1;
      }
    }
  }
  string ans="";
  dfs(A,0,-1,ans,1);
  cout<<ans<<'\n';
}
0