이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <cmath>
#include <utility>
using namespace std;
typedef long double ld;
typedef pair <int, int> pii;
#define x first
#define y second
#define mp make_pair
int a[4], n;
vector <pii> sad, ans;
ld naj;
const ld inf = (ld)1e15;
ld povrsina(){
	ld ret = 0;
	for(int i = 0 ; i < n - 1 ; ++i){
		ret = (ret + sad[i].x * sad[i + 1].y - sad[i + 1].x * sad[i].y);
	}
	ret = abs(ret) / 2;
	return ret;
}
int koji(int x, int y){
	if(!x)
		return 1;
	if(!y)
		return 0;
	if(x == y)
		return 2;
	return 3;
}
void rek(int kolko, int x, int y){
	if(kolko == n){
		if(x || y)
			return;
		ld t = povrsina();
		if(t < naj){
			naj = t;
			ans = sad;
		}
		return;
	}
	for(int i = -1 ; i <= 1 ; ++i){
		for(int j = -1 ; j <= 1 ; ++j){
			if(!i && !j)
				continue;
			int di = koji(i, j);
			if(!a[di])
				continue;
			a[di]--;
			int nx = x + i, ny = y + j;
			sad.push_back(mp(nx, ny));
			rek(kolko + 1, nx, ny);
			a[di]++;
			sad.pop_back();
		}
	}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
for(int i = 0 ; i < 4 ; ++i){
	cin >> a[i];
	n += a[i];
}
int x = 0, y = 0;
if(!a[0] && !a[1]){
	cout << 0 << ' ' << 0 << endl;
	for(int i = 0 ; i < a[2] / 2 ; ++i){
		x++;
		y++;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
	x--;
	y++;
	if(x || y){
		cout << x << ' ' << y << endl;
	}
	for(int i = 0 ; i < a[2] / 2 - 1 ; ++i){
		x--;
		y--;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
	for(int i = 0 ; i < a[3] / 2 - 1 ; ++i){
		x--;
		y++;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
	x--;
	y--;
	if(x || y){
		cout << x << ' ' << y << endl;
	}
	for(int i = 0 ; i < a[3] / 2 ; ++i){
		x++;
		y--;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
}
else if(!a[2] && !a[3]){
	cout << 0 << ' ' << 0 << endl;
	for(int i = 0 ; i < a[0] / 2 ; ++i){
		x++;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
	for(int i = 0 ; i < a[1] / 2 ; ++i){
		y++;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
	x--;
	if(x || y){
		cout << x << ' ' << y << endl;
	}
	for(int i = 0 ; i < a[1] / 2 - 1 ; ++i){
		y--;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
	for(int i = 0 ; i < a[0] / 2 - 1 ; ++i){
		x--;
		if(!x && !y)
			continue;
		cout << x << ' ' << y << endl;
	}
}
else{
	sad.push_back(mp(0, 0));
	naj = inf;
	rek(0, 0, 0);
	for(int i = 0 ; i < n ; ++i){
		cout << ans[i].x << ' ' << ans[i].y << endl;
	}
}
return 0;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |