12152022-03-25 20:00:11Szin AttilaPletykacpp14Time limit exceeded 76/100182ms60480 KiB
#include <bits/stdc++.h>
using namespace std;
#define InTheNameOfGod ios::sync_with_stdio(0);cin.tie(0); cout.tie(0);
using ll = long long;

const ll maxN = 2e5 + 5;
const ll MOD = 1e9 + 7;


int main() {
    /*freopen("../input.txt", "r", stdin);
    freopen("../output.txt", "w", stdout);*/
   InTheNameOfGod;
    
    ll n,m,k;
    cin >> n >> m >> k;

    vector<vector<ll> > g(n+1), tav(n+1, vector<ll>(2, -1));
    vector<ll> a(k);

    for(ll &i : a) cin >> i;

    for(ll i = 0; i < m; i++) {
        ll x,y;
        cin >> x >> y;
        g[x].push_back(y);
        g[y].push_back(x);
    }

    vector<vector<ll> > pref(2*n+1, vector<ll>(2, 0));
    queue<pair<ll, ll >> sor;

    for(ll i = 0; i < k; i++) {
        if(!g[a[i]].empty()) {
            tav[a[i]][0] = 1;
            pref[1][0]++;
            sor.push({a[i], 0});
        }
        else {
            pref[1][0]++;
            pref[3][0]--;
            //cout << "empty: " << a[i] << endl;
        }
    }

    while(!sor.empty()) {
        pair<ll, ll> cur = sor.front();
        sor.pop();

        //cout << cur.first << ", " << cur.second << ": " << tav[cur.first][cur.second] << endl;

        for(ll sz : g[cur.first]) {
            if(tav[sz][1-cur.second] != -1) continue;
            tav[sz][1-cur.second] = tav[cur.first][cur.second] + 1;
            pref[tav[sz][1-cur.second]][1-cur.second]++;
            sor.push({sz, 1-cur.second});
        }
    }

    /*for(ll i = 1; i < 7; i++) cout << pref[i][0] << ' ';
    cout << endl;
    for(ll i = 1; i < 7; i++) cout << pref[i][1] << ' ';
    cout << endl;*/

    vector<ll> mo(2*n+1, 0);
    ll maxi = -1, ind = -1;
    for(ll i = 1; i < pref.size(); i++) { 
        mo[i] = pref[i][1-i%2];

        if(i > 2) mo[i] += mo[i-2];

        if(mo[i] > maxi) {
            maxi = mo[i];
            ind = i;
        }
    }

    cout << maxi << "\n" << ind << "\n";
    for(ll i = 1; i <= ind; i++) cout << mo[i] << ' ';
    cout << "\n";

    return 0;
}
SubtaskSumTestVerdictTimeMemory
base76/100
1Accepted0/02ms1824 KiB
2Accepted0/029ms16232 KiB
3Accepted2/21ms2232 KiB
4Accepted2/22ms2708 KiB
5Accepted2/23ms3212 KiB
6Accepted2/24ms4564 KiB
7Accepted4/44ms4604 KiB
8Accepted4/48ms6960 KiB
9Accepted4/48ms7056 KiB
10Accepted4/48ms7152 KiB
11Accepted4/439ms16984 KiB
12Accepted4/428ms17312 KiB
13Accepted4/446ms27272 KiB
14Accepted4/446ms27920 KiB
15Accepted6/671ms37904 KiB
16Accepted6/675ms38716 KiB
17Accepted6/6108ms49200 KiB
18Accepted6/6112ms50252 KiB
19Accepted6/6114ms56124 KiB
20Accepted6/6119ms56820 KiB
21Time limit exceeded0/6134ms56824 KiB
22Time limit exceeded0/6130ms56824 KiB
23Time limit exceeded0/6182ms60336 KiB
24Time limit exceeded0/6178ms60480 KiB