結果

問題 No.812 Change of Class
ユーザー saksak
提出日時 2020-06-22 02:21:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 4,000 ms
コード長 2,390 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 217,264 KB
実行使用メモリ 13,940 KB
最終ジャッジ日時 2024-07-03 18:35:42
合計ジャッジ時間 12,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
9,472 KB
testcase_01 AC 18 ms
6,940 KB
testcase_02 AC 62 ms
6,944 KB
testcase_03 AC 134 ms
10,500 KB
testcase_04 AC 119 ms
9,840 KB
testcase_05 AC 418 ms
11,792 KB
testcase_06 AC 347 ms
11,076 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 376 ms
12,028 KB
testcase_10 AC 386 ms
12,148 KB
testcase_11 AC 20 ms
7,360 KB
testcase_12 AC 241 ms
10,684 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 257 ms
9,144 KB
testcase_16 AC 15 ms
6,940 KB
testcase_17 AC 234 ms
9,396 KB
testcase_18 AC 167 ms
7,744 KB
testcase_19 AC 202 ms
8,480 KB
testcase_20 AC 394 ms
11,716 KB
testcase_21 AC 157 ms
7,552 KB
testcase_22 AC 68 ms
6,940 KB
testcase_23 AC 12 ms
6,944 KB
testcase_24 AC 19 ms
6,940 KB
testcase_25 AC 55 ms
6,944 KB
testcase_26 AC 323 ms
10,544 KB
testcase_27 AC 289 ms
9,640 KB
testcase_28 AC 190 ms
8,464 KB
testcase_29 AC 42 ms
6,944 KB
testcase_30 AC 238 ms
9,276 KB
testcase_31 AC 216 ms
8,192 KB
testcase_32 AC 87 ms
6,944 KB
testcase_33 AC 254 ms
10,048 KB
testcase_34 AC 17 ms
6,944 KB
testcase_35 AC 46 ms
6,944 KB
testcase_36 AC 20 ms
6,944 KB
testcase_37 AC 117 ms
6,940 KB
testcase_38 AC 8 ms
6,944 KB
testcase_39 AC 123 ms
6,940 KB
testcase_40 AC 28 ms
6,944 KB
testcase_41 AC 6 ms
6,940 KB
testcase_42 AC 257 ms
8,576 KB
testcase_43 AC 39 ms
6,940 KB
testcase_44 AC 174 ms
7,116 KB
testcase_45 AC 20 ms
6,940 KB
testcase_46 AC 35 ms
6,944 KB
testcase_47 AC 171 ms
7,040 KB
testcase_48 AC 177 ms
7,936 KB
testcase_49 AC 52 ms
6,940 KB
testcase_50 AC 4 ms
6,944 KB
testcase_51 AC 49 ms
6,944 KB
testcase_52 AC 95 ms
7,188 KB
testcase_53 AC 35 ms
6,940 KB
testcase_54 AC 31 ms
6,940 KB
testcase_55 AC 151 ms
10,256 KB
testcase_56 AC 197 ms
12,568 KB
testcase_57 AC 218 ms
12,816 KB
testcase_58 AC 106 ms
8,244 KB
testcase_59 AC 238 ms
13,940 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef pair<ll, ll> p_ll;

template<class T>
void debug(T itr1, T itr2) { auto now = itr1; while(now<itr2) { cout << *now << " "; now++; } cout << endl; }
#define repr(i,from,to) for (int i=(int)from; i<(int)to; i++)
#define all(vec) vec.begin(), vec.end()
#define rep(i,N) repr(i,0,N)
#define per(i,N) for (int i=(int)N-1; i>=0; i--)

const ll MOD = pow(10,9)+7;
const ll LLINF = pow(2,61)-1;
const int INF = pow(2,30)-1;

vector<ll> fac;
void c_fac(int x=pow(10,6)+10) { fac.resize(x,true); rep(i,x) fac[i] = i ? (fac[i-1]*i)%MOD : 1; }
ll inv(ll a, ll m=MOD) { ll b = m, x = 1, y = 0; while (b!=0) { int d = a/b; a -= b*d; swap(a,b); x -= y*d; swap(x,y); } return (x+m)%m; }
ll nck(ll n, ll k) { return fac[n]*inv(fac[k]*fac[n-k]%MOD)%MOD; }
ll gcd(ll a, ll b) { if (a<b) swap(a,b); return b==0 ? a : gcd(b, a%b); }
ll lcm(ll a, ll b) { return a/gcd(a,b)*b; }

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

struct edge { ll to, d; };
vector<vector<edge>> adj;

vector<ll> dijkstra(int n=0) {
  int N = adj.size();
  auto c = [](const p_ll &x, const p_ll &y){return x.second>y.second;};
  priority_queue<p_ll, vector<p_ll>, decltype(c)> q(c);
  vector<ll> result(N,LLINF); result[n] = 0; q.push(make_pair(n,0));
  while(q.size()) {
    p_ll now = q.top(); q.pop();
    ll np = now.first, nd = now.second;
    if (nd>result[np]) continue;
    for (auto x: adj[np]) {
      if (result[x.to]<=result[np]+x.d) continue;
      q.push(make_pair(x.to, result[np]+x.d));
      result[x.to] = result[np]+x.d;
    }
  }
  return result;
}

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

int main() {
  ll N, M; cin >> N >> M;
  adj.resize(N);
  rep(i,M) {
    ll p, q; cin >> p >> q; p--; q--;
    adj[p].push_back({q,1});
    adj[q].push_back({p,1});
  }

  ll Q; cin >> Q;
  ll q[Q]; rep(i,Q) { cin >> q[i]; q[i]--; }
  rep(i,Q) {
    vector<ll> d = dijkstra(q[i]);
    ll count = 0, len = 0;
    rep(j,N) {
      if (q[i]!=j&&d[j]!=LLINF) {
        count++;
        ll now = 0, p2 = 1; while(p2<d[j]) { now++; p2*=2; }
        len = max(len, now);
      }
    }
    cout << count << " " << len << endl;
  }
  return 0;
}
0