71752024-01-01 20:02:52tomi7Parti (75 pont)cpp17Wrong answer 72/7579ms7320 KiB
// Source: https://usaco.guide/general/io

#include <bits/stdc++.h>
using namespace std;

vector<int> azaz;
	vector<pair<int, int>> a;
int ezazooooyeah(int n){
	bool b=false;
	for(int i=0;i<n;i++){
		if(azaz[i]==1 || azaz[i]==0){
		//	cout << i << endl;
			azaz[a[i].first-1]--;
			azaz[a[i].second-1]--;
			azaz[i]=-1;
			b=true;
		/*	for(int ii=0;ii<n;ii++){
				cout<< azaz[ii]<<' ';
				cout<<a[i].first<<' '<<a[i].second<<'\n';
			}
			cout << endl;*/
		}
	}
	if(b){
	return ezazooooyeah(n);
	}
	int valasz=0;
	for(int i=0;i<n;i++){
		if(azaz[i]>=2){
			valasz++;
		}
	}
	return valasz;
}

int main() {
	int n;
	cin>>n;
	for(int i=0;i<n;i++){
		pair<int, int> x;
		cin>>x.first>>x.second;
		a.push_back(x);
		azaz.push_back(0);
	}
	for(int i=0;i<n;i++){
		azaz[a[i].first-1]++;
		azaz[a[i].second-1]++;
	}
	bool b=true;
	cout<<ezazooooyeah(n)<<'\n';
	for(int i=0;i<n;i++){
		if(azaz[i]>=2){
			cout<<i+1<<' ';
			b=false;
		}
	}
}
SubtaskSumTestVerdictTimeMemory
base72/75
1Accepted0/03ms1872 KiB
2Accepted0/039ms3704 KiB
3Accepted3/33ms2152 KiB
4Accepted3/33ms2280 KiB
5Wrong answer0/33ms2520 KiB
6Accepted3/33ms2616 KiB
7Accepted3/33ms2748 KiB
8Accepted4/43ms2932 KiB
9Accepted4/43ms3172 KiB
10Accepted4/44ms3404 KiB
11Accepted4/43ms3484 KiB
12Accepted4/44ms3568 KiB
13Accepted4/44ms3548 KiB
14Accepted4/44ms3556 KiB
15Accepted4/439ms5060 KiB
16Accepted4/448ms5436 KiB
17Accepted4/454ms6652 KiB
18Accepted4/463ms6696 KiB
19Accepted4/471ms7092 KiB
20Accepted4/478ms7060 KiB
21Accepted4/479ms7320 KiB
22Accepted4/43ms4248 KiB