結果

問題 No.471 直列回転機
ユーザー pekempeypekempey
提出日時 2016-12-22 16:59:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 3,141 ms
コード長 874 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 171,684 KB
実行使用メモリ 25,592 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:34:17
合計ジャッジ時間 17,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,220 KB
testcase_01 AC 26 ms
24,940 KB
testcase_02 AC 25 ms
24,556 KB
testcase_03 AC 27 ms
25,184 KB
testcase_04 AC 24 ms
25,196 KB
testcase_05 AC 29 ms
24,940 KB
testcase_06 AC 27 ms
24,812 KB
testcase_07 AC 26 ms
24,812 KB
testcase_08 AC 65 ms
24,800 KB
testcase_09 AC 67 ms
25,196 KB
testcase_10 AC 46 ms
24,812 KB
testcase_11 AC 201 ms
25,196 KB
testcase_12 AC 400 ms
24,580 KB
testcase_13 AC 417 ms
24,836 KB
testcase_14 AC 463 ms
24,836 KB
testcase_15 AC 381 ms
24,580 KB
testcase_16 AC 31 ms
25,080 KB
testcase_17 AC 24 ms
24,940 KB
testcase_18 AC 26 ms
24,812 KB
testcase_19 AC 24 ms
24,812 KB
testcase_20 AC 472 ms
24,824 KB
testcase_21 AC 110 ms
25,208 KB
testcase_22 AC 417 ms
24,824 KB
testcase_23 AC 405 ms
25,208 KB
testcase_24 AC 239 ms
24,568 KB
testcase_25 AC 86 ms
24,952 KB
testcase_26 AC 465 ms
24,952 KB
testcase_27 AC 221 ms
24,952 KB
testcase_28 AC 273 ms
24,812 KB
testcase_29 AC 305 ms
25,208 KB
testcase_30 AC 122 ms
25,592 KB
testcase_31 AC 469 ms
25,208 KB
testcase_32 AC 385 ms
24,952 KB
testcase_33 AC 302 ms
24,952 KB
testcase_34 AC 442 ms
25,208 KB
testcase_35 AC 108 ms
24,952 KB
testcase_36 AC 192 ms
24,568 KB
testcase_37 AC 59 ms
25,208 KB
testcase_38 AC 97 ms
25,208 KB
testcase_39 AC 157 ms
24,952 KB
testcase_40 AC 325 ms
24,952 KB
testcase_41 AC 474 ms
24,824 KB
testcase_42 AC 305 ms
24,824 KB
testcase_43 AC 434 ms
25,208 KB
testcase_44 AC 60 ms
25,208 KB
testcase_45 AC 301 ms
24,824 KB
testcase_46 AC 335 ms
24,824 KB
testcase_47 AC 448 ms
25,208 KB
testcase_48 AC 381 ms
25,208 KB
testcase_49 AC 362 ms
25,208 KB
testcase_50 AC 432 ms
25,208 KB
testcase_51 AC 176 ms
25,208 KB
testcase_52 AC 28 ms
24,812 KB
testcase_53 AC 29 ms
24,812 KB
testcase_54 AC 29 ms
24,940 KB
testcase_55 AC 118 ms
25,196 KB
testcase_56 AC 98 ms
24,812 KB
testcase_57 AC 76 ms
24,940 KB
testcase_58 AC 45 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef complex<double> C;

uint64_t xorshift() {
	static uint64_t x = time(NULL);
	x ^= x << 13;
	x ^= x >> 7;
	x ^= x << 17;
	return x;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int n;
	cin >> n;

	vector<C> ps(n);
	for (int i = 0; i < n; i++) {
		int x, y;
		cin >> x >> y;
		ps[i] = C(x, y);
	}

	vector<C> a;
	vector<C> b;

	for (int i = 0; i < 3; i++) {
		int x = xorshift() % 20001 - 10000;
		int y = xorshift() % 20001 - 10000;
		cout << "? ";
		cout << x << " ";
		cout << y << endl;
		a.emplace_back(x, y);

		int xx, yy;
		cin >> xx >> yy;
		b.emplace_back(xx, yy);
	}

	C A = (b[1] - b[0]) / (a[1] - a[0]);
	C B = b[0] - a[0] * A;

	cout << "!" << endl;
	for (int i = 0; i < n; i++) {
		C ans = ps[i] * A + B;
		cout << (int)round(ans.real()) << " ";
		cout << (int)round(ans.imag()) << endl;
	}
}
0