結果

問題 No.812 Change of Class
ユーザー tnakao0123tnakao0123
提出日時 2019-04-13 02:11:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 137 ms / 4,000 ms
コード長 1,420 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 91,508 KB
実行使用メモリ 9,724 KB
最終ジャッジ日時 2024-06-12 20:19:39
合計ジャッジ時間 6,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
8,772 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 24 ms
7,296 KB
testcase_03 AC 49 ms
9,216 KB
testcase_04 AC 44 ms
8,704 KB
testcase_05 AC 137 ms
8,832 KB
testcase_06 AC 115 ms
8,448 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 124 ms
9,288 KB
testcase_10 AC 126 ms
9,344 KB
testcase_11 AC 10 ms
6,980 KB
testcase_12 AC 76 ms
8,800 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 85 ms
8,100 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 80 ms
8,192 KB
testcase_18 AC 60 ms
7,552 KB
testcase_19 AC 69 ms
7,936 KB
testcase_20 AC 131 ms
9,028 KB
testcase_21 AC 58 ms
7,424 KB
testcase_22 AC 26 ms
6,940 KB
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 22 ms
6,944 KB
testcase_26 AC 104 ms
8,576 KB
testcase_27 AC 93 ms
8,448 KB
testcase_28 AC 65 ms
7,936 KB
testcase_29 AC 17 ms
6,944 KB
testcase_30 AC 85 ms
8,320 KB
testcase_31 AC 71 ms
7,876 KB
testcase_32 AC 34 ms
6,944 KB
testcase_33 AC 86 ms
8,320 KB
testcase_34 AC 8 ms
6,944 KB
testcase_35 AC 18 ms
6,944 KB
testcase_36 AC 8 ms
6,940 KB
testcase_37 AC 39 ms
7,148 KB
testcase_38 AC 5 ms
6,940 KB
testcase_39 AC 42 ms
7,236 KB
testcase_40 AC 12 ms
6,940 KB
testcase_41 AC 4 ms
6,944 KB
testcase_42 AC 87 ms
8,320 KB
testcase_43 AC 21 ms
7,296 KB
testcase_44 AC 59 ms
7,424 KB
testcase_45 AC 9 ms
6,940 KB
testcase_46 AC 19 ms
7,424 KB
testcase_47 AC 59 ms
7,552 KB
testcase_48 AC 64 ms
7,808 KB
testcase_49 AC 18 ms
6,940 KB
testcase_50 AC 4 ms
6,944 KB
testcase_51 AC 19 ms
6,944 KB
testcase_52 AC 36 ms
7,552 KB
testcase_53 AC 13 ms
6,944 KB
testcase_54 AC 10 ms
6,940 KB
testcase_55 AC 33 ms
8,436 KB
testcase_56 AC 36 ms
9,136 KB
testcase_57 AC 37 ms
9,320 KB
testcase_58 AC 20 ms
7,800 KB
testcase_59 AC 42 ms
9,724 KB
testcase_60 AC 3 ms
6,940 KB
testcase_61 AC 3 ms
6,940 KB
testcase_62 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:47:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   47 |   scanf("%d%d", &n, &m);
      |   ~~~~~^~~~~~~~~~~~~~~~
main.cpp:51:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   51 |     scanf("%d%d", &a, &b);
      |     ~~~~~^~~~~~~~~~~~~~~~
main.cpp:58:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   58 |   scanf("%d", &q);
      |   ~~~~~^~~~~~~~~~
main.cpp:62:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   62 |     scanf("%d", &a);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 812.cc:  No.812 Change of Class - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 100000;

/* typedef */

typedef vector<int> vi;
typedef queue<int> qi;

/* global variables */

vi nbrs[MAX_N];
int dists[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);

  for (int i = 0; i < m; i++) {
    int a, b;
    scanf("%d%d", &a, &b);
    a--, b--;
    nbrs[a].push_back(b);
    nbrs[b].push_back(a);
  }

  int q;
  scanf("%d", &q);

  while (q--) {
    int a;
    scanf("%d", &a);
    a--;

    fill(dists, dists + n, -1);
    dists[a] = 0;
    qi q;
    q.push(a);
    int c = 0, maxdist = 0;
    while (! q.empty()) {
      int u = q.front(); q.pop();
      int vd = dists[u] + 1;
      vi &nbru = nbrs[u];
      for (vi::iterator vit = nbru.begin(); vit != nbru.end(); vit++) {
	int &v = *vit;
	if (dists[v] < 0) {
	  c++;
	  dists[v] = vd;
	  q.push(v);
	  if (maxdist < vd) maxdist = vd;
	}
      }
    }

    int d = 0, bd = 1;
    while (maxdist > bd) d++, bd <<= 1;
    printf("%d %d\n", c, d);
  }
  return 0;
}
0