12192022-03-25 20:12:17Szin AttilaPletykacpp14Time limit exceeded 88/100137ms53064 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);
    vector<vector<bool> > volt(n+1, vector<bool>(2, 0));
    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()) {
            volt[a[i]][0] = 1;
            pref[1][0]++;
            sor.push({a[i], 1});
        }
        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(volt[sz][cur.second % 2]) continue;
            volt[sz][cur.second % 2] = 1;
            pref[cur.second + 1][cur.second % 2]++;
            sor.push({sz, cur.second + 1});
        }
    }

    /*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
base88/100
1Accepted0/02ms1840 KiB
2Accepted0/025ms13220 KiB
3Accepted2/21ms2216 KiB
4Accepted2/214ms2516 KiB
5Accepted2/22ms2968 KiB
6Accepted2/24ms3924 KiB
7Accepted4/44ms3972 KiB
8Accepted4/47ms5844 KiB
9Accepted4/47ms5948 KiB
10Accepted4/47ms6040 KiB
11Accepted4/423ms14020 KiB
12Accepted4/417ms14352 KiB
13Accepted4/434ms22084 KiB
14Accepted4/432ms22652 KiB
15Accepted6/663ms30840 KiB
16Accepted6/659ms31660 KiB
17Accepted6/689ms40056 KiB
18Accepted6/690ms41112 KiB
19Accepted6/686ms45932 KiB
20Accepted6/697ms47088 KiB
21Accepted6/690ms48256 KiB
22Accepted6/6101ms49408 KiB
23Time limit exceeded0/6122ms52800 KiB
24Time limit exceeded0/6137ms53064 KiB