Submission #1063615

# Submission time Handle Problem Language Result Execution time Memory
1063615 2024-08-17T21:19:28 Z beaconmc Brought Down the Grading Server? (CEOI23_balance) C++14
0 / 100
343 ms 24116 KB
#include <bits/stdc++.h>
 
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(ll i=x; i>y; i--)
 
using namespace std;


map<ll,ll> sus;
map<ll,ll> sus2;
map<ll,ll> cnts;


int main(){
	srand(1);
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	ll n,s,t;
	cin >> n >> s >> t;
	vector<vector<ll>> stuff;


	FOR(i,0,n){
		ll a,b;
		cin >> a >> b;
		if (rand()%2==0) swap(a,b);
		cnts[a]++;
		cnts[b]++;
		stuff.push_back({a,b});
	}

	FOR(i,0,n){
		ll a = stuff[i][0], b = stuff[i][1];

		if (sus[a] == (cnts[a]+1)/2 || sus2[b] ==(cnts[b]+1)/2){
			cout << b << " "<< a << "\n";
			sus[b]++;
			sus2[a]++;
		}else{
			cout << a << " " << b << "\n";
			sus[a]++;
			sus2[b]++;
		}
	}
	cout << "FUCK" << endl;

	FOR(i,1,t+1){
		cout << sus[i] << " " << sus2[i] << endl;
	}





}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Extra information in the output file
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Extra information in the output file
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 343 ms 24116 KB maximum and minimum number of simultaneously evaluated submissions for any single task differ more than one
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 343 ms 24116 KB maximum and minimum number of simultaneously evaluated submissions for any single task differ more than one
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Extra information in the output file
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Expected integer, but "FUCK" found
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Expected integer, but "FUCK" found
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Expected integer, but "FUCK" found
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 343 ms 24116 KB maximum and minimum number of simultaneously evaluated submissions for any single task differ more than one
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 343 ms 24116 KB maximum and minimum number of simultaneously evaluated submissions for any single task differ more than one
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Extra information in the output file
2 Halted 0 ms 0 KB -