結果

問題 No.471 直列回転機
ユーザー antaanta
提出日時 2016-12-21 00:25:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 349 ms / 3,141 ms
コード長 1,325 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 168,232 KB
実行使用メモリ 25,660 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:20:09
合計ジャッジ時間 14,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,836 KB
testcase_01 AC 22 ms
25,660 KB
testcase_02 AC 23 ms
25,196 KB
testcase_03 AC 24 ms
25,196 KB
testcase_04 AC 25 ms
24,812 KB
testcase_05 AC 24 ms
24,556 KB
testcase_06 AC 24 ms
24,940 KB
testcase_07 AC 24 ms
25,196 KB
testcase_08 AC 52 ms
25,068 KB
testcase_09 AC 53 ms
24,812 KB
testcase_10 AC 35 ms
25,196 KB
testcase_11 AC 149 ms
24,800 KB
testcase_12 AC 281 ms
24,836 KB
testcase_13 AC 276 ms
24,580 KB
testcase_14 AC 301 ms
24,964 KB
testcase_15 AC 349 ms
25,220 KB
testcase_16 AC 26 ms
24,440 KB
testcase_17 AC 25 ms
25,196 KB
testcase_18 AC 25 ms
24,812 KB
testcase_19 AC 25 ms
25,196 KB
testcase_20 AC 320 ms
24,824 KB
testcase_21 AC 90 ms
24,824 KB
testcase_22 AC 287 ms
24,824 KB
testcase_23 AC 260 ms
25,448 KB
testcase_24 AC 172 ms
25,208 KB
testcase_25 AC 73 ms
25,208 KB
testcase_26 AC 319 ms
25,208 KB
testcase_27 AC 167 ms
25,208 KB
testcase_28 AC 195 ms
25,080 KB
testcase_29 AC 211 ms
24,824 KB
testcase_30 AC 106 ms
25,080 KB
testcase_31 AC 321 ms
25,208 KB
testcase_32 AC 273 ms
24,568 KB
testcase_33 AC 204 ms
24,952 KB
testcase_34 AC 299 ms
24,568 KB
testcase_35 AC 90 ms
24,824 KB
testcase_36 AC 144 ms
25,208 KB
testcase_37 AC 53 ms
25,592 KB
testcase_38 AC 77 ms
24,824 KB
testcase_39 AC 126 ms
25,208 KB
testcase_40 AC 221 ms
24,824 KB
testcase_41 AC 327 ms
24,568 KB
testcase_42 AC 210 ms
25,208 KB
testcase_43 AC 285 ms
25,336 KB
testcase_44 AC 57 ms
25,208 KB
testcase_45 AC 207 ms
24,824 KB
testcase_46 AC 228 ms
24,824 KB
testcase_47 AC 294 ms
24,824 KB
testcase_48 AC 259 ms
24,824 KB
testcase_49 AC 243 ms
25,208 KB
testcase_50 AC 288 ms
25,208 KB
testcase_51 AC 126 ms
24,568 KB
testcase_52 AC 26 ms
24,940 KB
testcase_53 AC 27 ms
24,812 KB
testcase_54 AC 26 ms
24,940 KB
testcase_55 AC 93 ms
24,940 KB
testcase_56 AC 87 ms
24,812 KB
testcase_57 AC 66 ms
24,812 KB
testcase_58 AC 38 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i))
#define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i))
static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL;
typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll;
template<typename T, typename U> static void amin(T &x, U y) { if (y < x) x = y; }
template<typename T, typename U> static void amax(T &x, U y) { if (x < y) x = y; }

int main() {
	int M;
	while (~scanf("%d", &M)) {
		vector<int> xs(M);
		vector<int> ys(M);
		for (int i = 0; i < M; ++i)
			scanf("%d%d", &xs[i], &ys[i]);
		auto query = [](int x, int y) {
			printf("? %d %d\n", x, y);
			fflush(stdout);
			int a; int b;
			scanf("%d%d", &a, &b);
			return make_pair(a, b);
		};
		auto zero = query(0, 0);
		auto x1 = query(1, 0);
		auto y1 = query(0, 1);
		int addx = zero.first, addy = zero.second;
		int xtox = x1.first - addx, xtoy = x1.second - addy;
		int ytox = y1.first - addx, ytoy = y1.second - addy;
		puts("!");
		rep(i, M) {
			int x = xs[i] * xtox + ys[i] * ytox + addx;
			int y = xs[i] * xtoy + ys[i] * ytoy + addy;
			printf("%d %d\n", x, y);
		}
		fflush(stdout);
		break;
	}
	return 0;
}
0