結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー tnakao0123tnakao0123
提出日時 2024-07-29 15:55:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 53,736 KB
実行使用メモリ 15,404 KB
最終ジャッジ日時 2024-07-29 15:55:56
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,896 KB
testcase_01 AC 3 ms
7,780 KB
testcase_02 AC 3 ms
8,768 KB
testcase_03 AC 3 ms
8,256 KB
testcase_04 AC 154 ms
15,404 KB
testcase_05 AC 79 ms
12,228 KB
testcase_06 AC 133 ms
14,552 KB
testcase_07 AC 15 ms
8,628 KB
testcase_08 AC 10 ms
8,644 KB
testcase_09 AC 13 ms
8,640 KB
testcase_10 AC 5 ms
9,152 KB
testcase_11 AC 4 ms
7,936 KB
testcase_12 AC 4 ms
7,796 KB
testcase_13 AC 3 ms
8,128 KB
testcase_14 AC 3 ms
8,768 KB
testcase_15 AC 3 ms
7,692 KB
testcase_16 AC 3 ms
7,740 KB
testcase_17 AC 3 ms
7,744 KB
testcase_18 AC 4 ms
8,256 KB
testcase_19 AC 3 ms
8,004 KB
testcase_20 AC 3 ms
7,840 KB
testcase_21 AC 4 ms
7,884 KB
testcase_22 AC 4 ms
8,000 KB
testcase_23 AC 3 ms
7,776 KB
testcase_24 AC 3 ms
8,128 KB
testcase_25 AC 3 ms
7,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2820.cc:  No.2820 Non-Preferred IUPAC Nomenclature - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

using vi = vector<int>;

/* global variables */

vi nbrs[MAX_N];
int ps[MAX_N], cis[MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);
  
  for (int u = 0; u < n; u++)
    for (int j = 0; j < 4; j++) {
      char s[8];
      scanf("%s", s);
      if (s[0] != 'H') {
	int v = atoi(s) - 1;
	nbrs[u].push_back(v);
      }
    }

  ps[0] = -1;
  for (int u = 0; u >= 0;) {
    auto &nbru = nbrs[u];
    int up = ps[u];

    if (cis[u] < nbru.size()) {
      int v = nbru[cis[u]++];
      if (v != up) {
	ps[v] = u;
	putchar('(');
	u = v;
      }
    }
    else {
      //printf("%d:meth", u);
      printf("meth");
      if (up >= 0) printf("yl)");
      else printf("ane");
      u = up;
    }
  }
  putchar('\n');

  return 0;
}
0