結果

問題 No.812 Change of Class
ユーザー koyopro
提出日時 2020-01-19 01:54:23
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1,264 ms / 4,000 ms
コード長 1,676 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 174,076 KB
実行使用メモリ 22,080 KB
最終ジャッジ日時 2024-06-12 22:08:48
合計ジャッジ時間 25,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 60
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/

map<int, set<int>> F;
int N,M,Q,A;
int ans = 0, day=0;

void update(int a) {
    int D[N];
    REP(i,N)D[i]=LONG_LONG_MAX;
    D[a]=-1;
    queue<int> que;
    que.push(a);
    while(!que.empty()) {
        int b = que.front();
        que.pop();
        for (int c:F[b]) {
            int newd = D[b]+1;
            if (D[c]>newd) {
                D[c] = newd;
                que.push(c);
            }
        }
    }
    int ma = -1;
    ans = 0;
    REP(i,N) if (D[i]>=0 && D[i]<LONG_LONG_MAX){
        ma = max(ma, D[i]);
        ans++;
    }
    day = 0;
    while(ma >= (1<<day)) day++;
}

void solve() {
    cin>>N>>M;
    int p,q;
    REP(i,M) {
        cin>>p>>q;
        p--;
        q--;
        F[p].insert(q);
        F[q].insert(p);
    }
    cin>>Q;
    REP(_,Q) {
        cin>>A;
        update(--A);
        out("%lld %lld\n", ans, day);
    }
}
0