12282022-03-27 11:46:52Szin AttilaPletykacpp14Időlimit túllépés 88/100133ms43924 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<int > pref(n+3, 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]++;
            sor.push({a[i], 0});
        }
        else {
            pref[1]++;
            pref[3]--;
            //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]]++;
            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];

        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;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base88/100
1Elfogadva0/02ms1820 KiB
2Elfogadva0/018ms9208 KiB
3Elfogadva2/21ms2220 KiB
4Elfogadva2/22ms2456 KiB
5Elfogadva2/22ms2716 KiB
6Elfogadva2/23ms3472 KiB
7Elfogadva4/44ms3520 KiB
8Elfogadva4/46ms4676 KiB
9Elfogadva4/44ms4772 KiB
10Elfogadva4/44ms4872 KiB
11Elfogadva4/418ms9904 KiB
12Elfogadva4/416ms10236 KiB
13Elfogadva4/430ms15456 KiB
14Elfogadva4/435ms16008 KiB
15Elfogadva6/656ms21448 KiB
16Elfogadva6/654ms22264 KiB
17Elfogadva6/667ms28008 KiB
18Elfogadva6/671ms29048 KiB
19Elfogadva6/668ms32684 KiB
20Elfogadva6/697ms33836 KiB
21Elfogadva6/6101ms34992 KiB
22Elfogadva6/698ms36164 KiB
23Időlimit túllépés0/6120ms41400 KiB
24Időlimit túllépés0/6133ms43924 KiB