結果

問題 No.2532 Want Play More
ユーザー chro_96chro_96
提出日時 2023-11-03 22:49:59
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 21,360 KB
最終ジャッジ日時 2024-09-25 21:13:06
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,952 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 AC 94 ms
11,888 KB
testcase_03 AC 85 ms
11,992 KB
testcase_04 AC 83 ms
11,996 KB
testcase_05 AC 83 ms
11,960 KB
testcase_06 AC 65 ms
21,360 KB
testcase_07 AC 8 ms
12,008 KB
testcase_08 AC 8 ms
12,032 KB
testcase_09 AC 8 ms
12,032 KB
testcase_10 AC 40 ms
11,980 KB
testcase_11 AC 42 ms
11,956 KB
testcase_12 AC 72 ms
12,004 KB
testcase_13 AC 52 ms
12,008 KB
testcase_14 AC 18 ms
12,004 KB
testcase_15 AC 106 ms
11,884 KB
testcase_16 AC 78 ms
12,032 KB
testcase_17 AC 7 ms
12,020 KB
testcase_18 AC 56 ms
12,020 KB
testcase_19 AC 77 ms
12,012 KB
testcase_20 AC 6 ms
12,032 KB
testcase_21 AC 6 ms
11,952 KB
testcase_22 AC 6 ms
12,008 KB
testcase_23 AC 6 ms
12,032 KB
testcase_24 AC 7 ms
11,996 KB
testcase_25 AC 6 ms
12,032 KB
testcase_26 AC 7 ms
11,904 KB
testcase_27 AC 6 ms
12,012 KB
testcase_28 AC 49 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

typedef struct list {
  int v;
  struct list *n;
} list;

void func (int v, list **e, int *visited, int ans[][2]) {
  list *l = e[v];
  
  visited[v] = 1;
  ans[v][0] = 0;
  ans[v][1] = 0;
  while (l != NULL) {
    if (visited[l->v] <= 0) {
      func(l->v, e, visited, ans);
      if (ans[v][0] < ans[l->v][1]+1) {
        ans[v][0] = ans[l->v][1]+1;
      }
      if (ans[v][1] <= 0 || ans[v][1] > ans[l->v][0]+1) {
        ans[v][1] = ans[l->v][0]+1;
      }
    }
    l = l->n;
  }
  
  return;
}

int main () {
  int n = 0;
  int a = 0;
  int b = 0;
  
  int res = 0;
  
  int ans[200000][2] = {};
  list *e[200000] = {};
  
  list pool[399998] = {};
  int used = 0;
  
  int visited[200000] = {};
  
  res = scanf("%d", &n);
  for (int i = 0; i < n-1; i++) {
    res = scanf("%d", &a);
    res = scanf("%d", &b);
    a--;
    b--;
    pool[used].v = b;
    pool[used].n = e[a];
    e[a] = pool+used;
    used++;
    pool[used].v = a;
    pool[used].n = e[b];
    e[b] = pool+used;
    used++;
  }
  
  func(0, e, visited, ans);
  
  printf("%d\n%d\n", ans[0][0], ans[0][1]);
  return 0;
}
0