1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <bits/stdc++.h>
using namespace std;
int tab[3001];
queue <int> wypisz;
void policz(){
    int n,m,k;
    int ile=0;
    cin >> n >> m >> k;
    for(int i=0;i<m;i++){
        int a,b;
        cin >> a >> b;
        for (int i=1;i<=n;i++){
            if(i!=a && i!=b){
                tab[i]++;
            }
        }
    }
    int minimum=2137213722;
    for(int i=1;i<=n;i++){
        if(tab[i]<minimum){
            minimum=tab[i];
        }
    }
    if(minimum+1>k){
        cout << -1 << '\n';
    }else{
        for(int i=1;i<=n;i++){
            if(tab[i]==minimum){
                ile++;
                wypisz.push(i);
            }
        }
        cout << minimum+1 << ' ' << ile << '\n';
        while(wypisz.size()){
            cout << wypisz.front() << ' ';
            wypisz.pop();
        }
        cout << '\n';
    }
    for(int i=1;i<=n;i++){
        tab[i]=0;
    }
}
int main(){ios_base::sync_with_stdio(0);cin.tie();
    int p;
    cin >> p;
    for (int i=0;i<p;i++){
        policz();
    }
}