結果

問題 No.5009 Draw A Convex Polygon
ユーザー MasKoaTSMasKoaTS
提出日時 2022-12-02 10:47:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 365 ms / 2,600 ms
コード長 1,144 bytes
コンパイル時間 1,755 ms
実行使用メモリ 99,476 KB
スコア 100,000
平均クエリ数 100001.00
最終ジャッジ日時 2022-12-02 10:47:53
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define all(x) x.begin(), x.end()
using namespace std;
template <class T>
using V = vector<T>;


int gcd(int a, int b) {
	a = abs(a);	b = abs(b);
	while (b != 0) {
		int r = a % b;
		a = b;
		b = r;
	}
	return a;
}

int area(const V<int>& v1, const V<int>& v2) {
	int x1 = v1[0], y1 = v1[1];
	int x2 = v2[0], y2 = v2[1];
	return (x1 * y2 - x2 * y1);
}

bool arg_sort(const V<int>& v1, const V<int>& v2) {
	return area(v1, v2) > 0;
}


int main(void) {
	V<V<int> > vec = { {1,0} };
	int n = 1000, m = 50000;
	for (int i = 1; i < n; ++i) {
		for (int j = 1; j < n; ++j) {
			if (gcd(j, i) > 1) {
				continue;
			}
			vec.push_back({ j,i });
			vec.push_back({ j,-i });
		}
	}

	int N = vec.size();
	if (N > m) {
		vec.resize(m);
		N = m;
	}
	sort(all(vec), arg_sort);

	int M = 1000000000;
	int x = -M, y = 0;
	cout << (N * 2) << endl;
	// return 0;

	for (V<int> v : vec) {
		x += v[0];	y += v[1];
		cout << x << ' ' << y << endl;
	}
	for (V<int> v : vec) {
		x -= v[0];	y -= v[1];
		cout << x << ' ' << y << endl;
	}

	return 0;
}
0