結果

問題 No.812 Change of Class
ユーザー kjnh10kjnh10
提出日時 2019-04-12 23:44:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 937 ms / 4,000 ms
コード長 2,512 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 178,328 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-12 19:57:47
合計ジャッジ時間 18,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
8,960 KB
testcase_01 AC 20 ms
6,944 KB
testcase_02 AC 67 ms
6,944 KB
testcase_03 AC 142 ms
9,984 KB
testcase_04 AC 127 ms
9,088 KB
testcase_05 AC 894 ms
11,820 KB
testcase_06 AC 937 ms
12,204 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 693 ms
12,288 KB
testcase_10 AC 711 ms
12,288 KB
testcase_11 AC 14 ms
8,192 KB
testcase_12 AC 361 ms
10,964 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 500 ms
9,068 KB
testcase_16 AC 30 ms
6,944 KB
testcase_17 AC 436 ms
9,436 KB
testcase_18 AC 333 ms
7,936 KB
testcase_19 AC 376 ms
8,544 KB
testcase_20 AC 744 ms
12,112 KB
testcase_21 AC 319 ms
7,768 KB
testcase_22 AC 147 ms
6,944 KB
testcase_23 AC 25 ms
6,940 KB
testcase_24 AC 41 ms
6,940 KB
testcase_25 AC 123 ms
6,944 KB
testcase_26 AC 629 ms
10,328 KB
testcase_27 AC 544 ms
9,692 KB
testcase_28 AC 355 ms
8,508 KB
testcase_29 AC 88 ms
6,940 KB
testcase_30 AC 478 ms
9,320 KB
testcase_31 AC 414 ms
8,348 KB
testcase_32 AC 181 ms
6,944 KB
testcase_33 AC 527 ms
9,960 KB
testcase_34 AC 34 ms
6,940 KB
testcase_35 AC 76 ms
6,944 KB
testcase_36 AC 38 ms
6,940 KB
testcase_37 AC 218 ms
6,944 KB
testcase_38 AC 7 ms
6,944 KB
testcase_39 AC 226 ms
6,940 KB
testcase_40 AC 48 ms
6,944 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 465 ms
8,448 KB
testcase_43 AC 33 ms
7,168 KB
testcase_44 AC 336 ms
6,944 KB
testcase_45 AC 39 ms
6,940 KB
testcase_46 AC 28 ms
7,040 KB
testcase_47 AC 322 ms
6,940 KB
testcase_48 AC 298 ms
7,808 KB
testcase_49 AC 104 ms
6,940 KB
testcase_50 AC 6 ms
6,940 KB
testcase_51 AC 74 ms
6,944 KB
testcase_52 AC 135 ms
7,296 KB
testcase_53 AC 66 ms
6,940 KB
testcase_54 AC 60 ms
6,940 KB
testcase_55 AC 321 ms
10,400 KB
testcase_56 AC 398 ms
12,724 KB
testcase_57 AC 414 ms
13,004 KB
testcase_58 AC 212 ms
8,512 KB
testcase_59 AC 483 ms
14,080 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 1 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// template version 1.7

// varibable settings {{{
using namespace std;
#include <iostream>
#include <bits/stdc++.h>

#define int long long
#define INF 1e18
// #define INF 2147483647
#define MOD 1e9+7
#define infile "../test/sample-1.in"
int dx[]={1, -1, 0, 0};
int dy[]={0, 0, 1, -1};
#define fi first
#define se second

// }}}

// define basic macro {{{
#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=(int)(a);i<(int)(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define _rrep(i,n) rrepi(i,0,n)
#define rrepi(i,a,b) for(int i=(int)(b-1);i>=(int)(a);--i)
#define rrep(...) _overload3(__VA_ARGS__,rrepi,_rrep,)(__VA_ARGS__)
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define pb(a) push_back(a)
#define mp(a, b) make_pair(a, b)
#define uni(x) sort(all(x));x.erase(unique(all(x)),x.end())
template<class T> inline void chmax(T &a, const T &b) { if(a < b) a = b; }
template<class T> inline void chmin(T &a, const T &b) { if(a > b) a = b; }

typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef long double ld;
typedef pair<int,int> pii;
typedef tuple<int,int,int> iii;
template<typename T> using PQ = priority_queue<T, vector<T>, greater<T>>;

// dump macro
#ifdef PCM
  #include "dump.hpp"
#else
  #define dump(...) 42
  #define dump_1d(...) 42
  #define dump_2d(...) 42
#endif
struct Fast { Fast(){ std::cin.tie(0); ios::sync_with_stdio(false); } } fast;
// }}}

int solve(){
  int n,m;
  cin>>n>>m;

  vvi e(n, vi());
  rep(i, m){
    int p,q;
    cin>>p>>q;p--;q--;
    e[p].pb(q);
    e[q].pb(p);
  }

  int q;cin>>q;
  rep(i, q){
    int r[n]={};
    int d[n]={};
    rep(i, n) d[i]=-1;
    int st;cin>>st;st--;
    PQ<pii> s;
    s.push(mp(0LL, st));
    for (auto& el:e[st]){
      s.push(mp(1LL, el));
    }
    while(!s.empty()){
      pii node = s.top();s.pop();
      if (r[node.second]==1) continue;

      d[node.second] = node.first;
      r[node.second]=1;
      for (auto& el:e[node.second]){
        s.push(mp(node.first+1, el));
      }
    }
    dump_1d(d, n);
    int f=0;
    rep(i, n){
      if (d[i]>0) f++;
    }
    int res=0;
    res = max(0LL, *max_element(d, d+n));
    rep(j, 20){
      if (pow(2, j)>=res){
        res=j;
        break;
      }
    }
    cout << f << " " << res << endl;
  }

  return 0;
}

signed main() { //{{{
#ifdef INPUT_FROM_FILE
  std::ifstream in(infile);
  std::cin.rdbuf(in.rdbuf());
#endif
  solve();
  return 0;
} //}}}
0