12182022-03-25 20:07:23Szin AttilaPletykacpp14Time limit exceeded 94/100128ms51484 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 int maxN = 2e5 + 5;
const int MOD = 1e9 + 7;

inline int read(){
    int res=0; char ch=getchar();
    while(ch < '0' || '9' < ch) ch=getchar();
    while('0' <= ch && ch <= '9'){
        res=(res<<3) + (res<<1)+ch-'0';
        ch=getchar();
    }
    return res;
}


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

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

    for(int &i : a) i = read();

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

    vector<vector<int> > pref(n+3, vector<int>(2, 0));
    queue<pair<int, int > > sor;

    for(int 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<int, int> cur = sor.front();
        sor.pop();

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

        for(int 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(int i = 1; i < 7; i++) cout << pref[i][0] << ' ';
    cout << endl;
    for(int i = 1; i < 7; i++) cout << pref[i][1] << ' ';
    cout << endl;*/

    vector<int> mo(n+3, 0);
    int maxi = -1, ind = -1;
    for(int 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(int i = 1; i <= ind; i++) cout << mo[i] << ' ';
    cout << "\n";

    return 0;
}
SubtaskSumTestVerdictTimeMemory
base94/100
1Accepted0/02ms1848 KiB
2Accepted0/020ms12324 KiB
3Accepted2/21ms2212 KiB
4Accepted2/22ms2500 KiB
5Accepted2/22ms2944 KiB
6Accepted2/24ms3968 KiB
7Accepted4/44ms4020 KiB
8Accepted4/47ms5708 KiB
9Accepted4/46ms5804 KiB
10Accepted4/46ms5904 KiB
11Accepted4/420ms13036 KiB
12Accepted4/418ms13368 KiB
13Accepted4/432ms20456 KiB
14Accepted4/435ms21096 KiB
15Accepted6/657ms28696 KiB
16Accepted6/652ms29496 KiB
17Accepted6/681ms37336 KiB
18Accepted6/686ms38380 KiB
19Accepted6/679ms42792 KiB
20Accepted6/686ms43956 KiB
21Accepted6/685ms45100 KiB
22Accepted6/6107ms46260 KiB
23Time limit exceeded0/6128ms51080 KiB
24Accepted6/6119ms51484 KiB