結果

問題 No.471 直列回転機
ユーザー tubo28tubo28
提出日時 2016-12-12 13:47:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 514 ms / 3,141 ms
コード長 795 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 169,560 KB
実行使用メモリ 25,592 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:12:42
合計ジャッジ時間 19,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,348 KB
testcase_01 AC 24 ms
24,556 KB
testcase_02 AC 24 ms
24,556 KB
testcase_03 AC 24 ms
25,580 KB
testcase_04 AC 23 ms
24,812 KB
testcase_05 AC 29 ms
24,556 KB
testcase_06 AC 26 ms
24,940 KB
testcase_07 AC 27 ms
24,812 KB
testcase_08 AC 67 ms
24,812 KB
testcase_09 AC 73 ms
24,940 KB
testcase_10 AC 50 ms
24,556 KB
testcase_11 AC 212 ms
25,196 KB
testcase_12 AC 446 ms
25,092 KB
testcase_13 AC 441 ms
25,220 KB
testcase_14 AC 496 ms
24,580 KB
testcase_15 AC 406 ms
25,220 KB
testcase_16 AC 28 ms
24,568 KB
testcase_17 AC 25 ms
24,556 KB
testcase_18 AC 24 ms
24,940 KB
testcase_19 AC 24 ms
25,196 KB
testcase_20 AC 514 ms
24,952 KB
testcase_21 AC 114 ms
24,952 KB
testcase_22 AC 439 ms
24,952 KB
testcase_23 AC 448 ms
25,196 KB
testcase_24 AC 254 ms
24,824 KB
testcase_25 AC 89 ms
24,568 KB
testcase_26 AC 511 ms
25,208 KB
testcase_27 AC 231 ms
24,952 KB
testcase_28 AC 292 ms
24,568 KB
testcase_29 AC 328 ms
24,568 KB
testcase_30 AC 134 ms
25,208 KB
testcase_31 AC 500 ms
24,824 KB
testcase_32 AC 417 ms
24,824 KB
testcase_33 AC 325 ms
25,196 KB
testcase_34 AC 471 ms
24,952 KB
testcase_35 AC 111 ms
24,824 KB
testcase_36 AC 213 ms
24,568 KB
testcase_37 AC 66 ms
25,208 KB
testcase_38 AC 101 ms
25,208 KB
testcase_39 AC 159 ms
24,952 KB
testcase_40 AC 345 ms
25,208 KB
testcase_41 AC 512 ms
25,208 KB
testcase_42 AC 327 ms
25,464 KB
testcase_43 AC 471 ms
25,464 KB
testcase_44 AC 61 ms
24,824 KB
testcase_45 AC 314 ms
24,824 KB
testcase_46 AC 371 ms
24,824 KB
testcase_47 AC 477 ms
25,208 KB
testcase_48 AC 398 ms
24,568 KB
testcase_49 AC 401 ms
25,208 KB
testcase_50 AC 458 ms
24,952 KB
testcase_51 AC 202 ms
25,592 KB
testcase_52 AC 29 ms
25,020 KB
testcase_53 AC 31 ms
25,196 KB
testcase_54 AC 30 ms
24,556 KB
testcase_55 AC 128 ms
24,812 KB
testcase_56 AC 97 ms
25,196 KB
testcase_57 AC 74 ms
24,556 KB
testcase_58 AC 54 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define all(c) begin(c), end(c)
#define dump(x) cerr << __LINE__ << ":\t" #x " = " << x << endl

using ld = long double;
using cpl = complex<ld>;
int M;
vector<cpl> ps;

int main() {
    cin >> M;
    ps.resize(M);
    for (int i = 0; i < M; i++) {
        int x, y;
        cin >> x >> y;
        ps[i] = cpl(x, y);
    }
    cout << "? 0 0" << endl;
    int ox, oy, ex, ey;
    cin >> ox >> oy;
    cout << "? 1 0" << endl;
    cin >> ex >> ey;
    cpl c(ox, oy), r(ex - ox, ey - oy);
    dump(c);
    dump(r);
    cout << "!" << endl;
    for (int i = 0; i < M; i++) {
        auto p = ps[i] * r + c;
        cout << (int)p.real() << ' ' << (int)p.imag() << endl;
    }
}
0