結果

問題 No.812 Change of Class
ユーザー Zhendong JiaZhendong Jia
提出日時 2019-04-12 22:26:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 100 ms / 4,000 ms
コード長 2,498 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 89,912 KB
実行使用メモリ 7,512 KB
最終ジャッジ日時 2024-06-12 19:09:40
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
7,124 KB
testcase_01 AC 6 ms
6,948 KB
testcase_02 AC 16 ms
7,000 KB
testcase_03 AC 32 ms
7,508 KB
testcase_04 AC 29 ms
7,380 KB
testcase_05 AC 100 ms
7,504 KB
testcase_06 AC 92 ms
7,496 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 84 ms
7,512 KB
testcase_10 AC 86 ms
7,376 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 50 ms
7,040 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 58 ms
7,128 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 54 ms
7,372 KB
testcase_18 AC 40 ms
6,940 KB
testcase_19 AC 45 ms
6,944 KB
testcase_20 AC 88 ms
7,500 KB
testcase_21 AC 37 ms
6,992 KB
testcase_22 AC 18 ms
6,944 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 6 ms
6,944 KB
testcase_25 AC 15 ms
6,944 KB
testcase_26 AC 73 ms
7,376 KB
testcase_27 AC 65 ms
6,944 KB
testcase_28 AC 45 ms
7,124 KB
testcase_29 AC 12 ms
6,940 KB
testcase_30 AC 57 ms
7,248 KB
testcase_31 AC 51 ms
7,000 KB
testcase_32 AC 22 ms
6,944 KB
testcase_33 AC 63 ms
7,252 KB
testcase_34 AC 7 ms
6,940 KB
testcase_35 AC 13 ms
6,940 KB
testcase_36 AC 7 ms
6,944 KB
testcase_37 AC 32 ms
6,940 KB
testcase_38 AC 4 ms
6,944 KB
testcase_39 AC 31 ms
6,944 KB
testcase_40 AC 9 ms
6,944 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 63 ms
7,000 KB
testcase_43 AC 11 ms
6,944 KB
testcase_44 AC 43 ms
6,940 KB
testcase_45 AC 7 ms
6,944 KB
testcase_46 AC 12 ms
6,940 KB
testcase_47 AC 46 ms
6,940 KB
testcase_48 AC 42 ms
6,944 KB
testcase_49 AC 14 ms
6,944 KB
testcase_50 AC 3 ms
6,948 KB
testcase_51 AC 12 ms
6,940 KB
testcase_52 AC 21 ms
6,944 KB
testcase_53 AC 10 ms
6,996 KB
testcase_54 AC 9 ms
6,944 KB
testcase_55 AC 19 ms
7,256 KB
testcase_56 AC 22 ms
7,168 KB
testcase_57 AC 23 ms
7,252 KB
testcase_58 AC 13 ms
6,940 KB
testcase_59 AC 25 ms
7,384 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 3 ms
6,944 KB
testcase_62 AC 2 ms
6,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:103:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  103 |       scanf("%d%d", &p, &q);
      |       ~~~~~^~~~~~~~~~~~~~~~
main.cpp:115:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  115 |     scanf("%d", &q);
      |     ~~~~~^~~~~~~~~~
main.cpp:117:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  117 |       scanf("%d", &p);
      |       ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <assert.h>
#include <ctype.h>
#include <float.h>
#include <limits.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>

#include <algorithm>
#include <bitset>
#include <complex>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;

#define SZ(a) (int)(a).size()
#define FOR(i,a,b) for (int i=(a); i<=(b); ++i)
#define REP(i,n) for (int i=0; i<(n); ++i)
#define ALL(c) c.begin(), c.end()
#define CLR(c,n) memset(c, n, sizeof(c))
#define MCPY(d, s) memcpy(d, s, sizeof(d))
#define TR(it, c) for (auto it = c.begin();it != c.end(); ++it)
#define CONTAIN(it, c) (c.find(it) != c.end())
typedef vector<int> VI;
typedef pair<int, int> PII;
template <class T> void checkmin(T &a, T b) { if (b<a) a=b; }
template <class T> void checkmax(T &a, T b) { if (b>a) a=b; }
typedef long long LL;
const int INF=0x3F3F3F3F;

const int N=100000, M=N*2;

int n, m;
int head[N], dst[M], nxt[M];
int deg[N];
int c[N], ccnt[N], nc;
int q[N], d[N];

void add_edge(int u, int v, int id) {
  dst[id] = v;
  nxt[id] = head[u];
  head[u] = id;
  ++deg[u];
}

void fill(int root) {
  int qa = 0, qe = 0;
  q[qe++] = root;
  c[root] = nc;
  while (qa < qe) {
    root = q[qa++];
    for (int i = head[root]; i >= 0; i = nxt[i]) {
      int d = dst[i];
      if (c[d] >= 0) continue;
      c[d] = nc;
      q[qe++] = d;
    }
  }
  ccnt[nc] = qe;
}

int bfs(int root) {
  CLR(d, -1);
  d[root] = 0;
  int qa = 0, qe = 0;
  q[qe++] = root;
  if (head[root] < 0) return 0;
  while (qa < qe) {
    root = q[qa++];
    for (int i = head[root]; i >= 0; i = nxt[i]) {
      int dest = dst[i];
      if (d[dest] >= 0) continue;
      d[dest] = d[root] + 1;
      q[qe++] = dest;
    }
  }
  int dist = d[q[qe-1]], day = 0, md = 1;
  while (md < dist) {
    md *= 2;
    ++day;
  }
  return day;
}

int main(int argc, char *argv[]) {
  int p, q;
  while (scanf("%d%d", &n, &m) == 2) {
    CLR(head, -1);
    CLR(deg, 0);
    REP(i, m) {
      scanf("%d%d", &p, &q);
      --p; --q;
      add_edge(p, q, i*2);
      add_edge(q, p, i*2+1);
    }
    CLR(c, -1);
    CLR(ccnt, 0);
    nc = 0;
    REP(i, n) if(c[i] == -1) {
      fill(i);
      ++nc;
    }
    scanf("%d", &q);
    REP(i, q) {
      scanf("%d", &p);
      --p;
      printf("%d %d\n", ccnt[c[p]] - 1, bfs(p));
    }
  }
}
0