結果

問題 No.277 根掘り葉掘り
ユーザー nanasilinanasili
提出日時 2015-09-18 14:25:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 83 ms / 3,000 ms
コード長 1,483 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 85,624 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-19 06:55:01
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,272 KB
testcase_01 AC 4 ms
6,528 KB
testcase_02 AC 3 ms
6,272 KB
testcase_03 AC 3 ms
6,528 KB
testcase_04 AC 4 ms
6,272 KB
testcase_05 AC 2 ms
6,400 KB
testcase_06 AC 2 ms
6,272 KB
testcase_07 AC 2 ms
6,400 KB
testcase_08 AC 4 ms
6,272 KB
testcase_09 AC 61 ms
14,464 KB
testcase_10 AC 42 ms
10,424 KB
testcase_11 AC 68 ms
10,240 KB
testcase_12 AC 77 ms
12,472 KB
testcase_13 AC 76 ms
10,176 KB
testcase_14 AC 69 ms
10,444 KB
testcase_15 AC 75 ms
10,624 KB
testcase_16 AC 83 ms
10,496 KB
testcase_17 AC 74 ms
10,496 KB
testcase_18 AC 73 ms
10,368 KB
testcase_19 AC 76 ms
10,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:56:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   56 |     scanf("%d %d", &a, &b);
      |     ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <algorithm>
#include <vector>
#include <cfloat>
#include <string>
#include <cmath>
#include <set>
#include <cstdlib>
#include <map>
#include <ctime>
#include <iomanip>
#include <functional>
#include <deque>
#include <iostream>
#include <cstring>
#include <queue>
#include <cstdio>
#include <stack>
#include <climits>
#include <sys/time.h>
#include <cctype>

using namespace std;

typedef long long ll;

#define MAX_V 100000

int n;
vector <int> graph[MAX_V+1];
int memo1[MAX_V+1], memo2[MAX_V+1];
bool vis[MAX_V+1];
void rec1(int x, int t) {
  memo1[x] = t;
  vis[x] = true;
  for (int i = 0; i < graph[x].size(); i++) {
    int p = graph[x][i];
    if (vis[p]) continue;
    rec1(p, t+1);
  }
}

void rec2(int x, int t) {
  for (int i = 0; i < graph[x].size(); i++) {
    int p = graph[x][i];
    if (memo2[p] == -1 || memo2[p] > t+1) {
      memo2[p] = t+1;
      rec2(p, t+1);
    }
  }
}

int main() {
  scanf("%d", &n);
  for (int i = 0; i < n-1; i++) {
    int a, b;
    scanf("%d %d", &a, &b);
    a--; b--;
    graph[a].push_back(b);
    graph[b].push_back(a);
  }
  memset(vis, false, sizeof(vis));
  rec1(0, 0);
  for (int i = 0; i < n; i++) {
    if (graph[i].size() == 1) {
      graph[i].push_back(n);
      graph[n].push_back(i);
    }
  }

  memset(vis, false, sizeof(vis));
  memset(memo2, -1, sizeof(memo2));
  memo2[n] = 0;
  rec2(n, -1);
  for (int i = 0; i < n; i++) {
    printf("%d\n", min(memo1[i], memo2[i]));
    // printf("%d\n", memo2[i]);
  }

}
0