結果

問題 No.5009 Draw A Convex Polygon
ユーザー 👑 rin204rin204
提出日時 2022-12-02 01:12:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 986 bytes
コンパイル時間 2,113 ms
実行使用メモリ 14,624 KB
スコア 0
平均クエリ数 980055.00
最終ジャッジ日時 2022-12-02 01:13:02
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void solve(){
	vector<pair<int, int>> D;
	int dx = 1;
	int dy = 2;
	while(D.size() * 4 < 1000000){
		if(gcd(dx, dy) == 1){
			D.push_back({dx, dy});
			D.push_back({dy, dx});
		}
		dx++;
		if(dx == dy){
			dx = 1;
			dy++;
		}
	}
	sort(D.begin(), D.end(), [](pair<int, int> &l, pair<int, int> &r){
		return l.first * r.second < r.first * l.second;
	});

	int x = -1000000000;
	int y = 0;
	cout << 1000000 << '\n';
	for(auto tmp:D){
		x += tmp.first;
		y += tmp.second;
		cout << x << " " << y << '\n';
	}

	for(auto tmp:D){
		x += tmp.second;
		y -= tmp.first;
		cout << x << " " << y << '\n';
	}

	for(auto tmp:D){
		x -= tmp.first;
		y -= tmp.second;
		cout << x << " " << y << '\n';
	}

	for(auto tmp:D){
		x -= tmp.second;
		y += tmp.first;
		cout << x << " " << y << '\n';
	}
	cout << endl;
}

int main(){
	cin.tie(0)->sync_with_stdio(0);
	cout << fixed << setprecision(12);
	int t;
	t = 1;
	while(t--) solve();
}
0