結果

問題 No.471 直列回転機
ユーザー pekempeypekempey
提出日時 2016-12-21 00:31:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 299 ms / 3,141 ms
コード長 1,204 bytes
コンパイル時間 1,756 ms
コンパイル使用メモリ 171,028 KB
実行使用メモリ 25,808 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:20:24
合計ジャッジ時間 12,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,580 KB
testcase_01 AC 19 ms
25,196 KB
testcase_02 AC 19 ms
25,196 KB
testcase_03 AC 19 ms
25,544 KB
testcase_04 AC 21 ms
24,812 KB
testcase_05 AC 20 ms
25,196 KB
testcase_06 AC 19 ms
25,196 KB
testcase_07 AC 21 ms
25,196 KB
testcase_08 AC 44 ms
25,196 KB
testcase_09 AC 48 ms
24,556 KB
testcase_10 AC 27 ms
24,556 KB
testcase_11 AC 135 ms
25,196 KB
testcase_12 AC 244 ms
25,220 KB
testcase_13 AC 241 ms
25,220 KB
testcase_14 AC 256 ms
25,208 KB
testcase_15 AC 299 ms
24,580 KB
testcase_16 AC 25 ms
25,208 KB
testcase_17 AC 20 ms
24,812 KB
testcase_18 AC 20 ms
24,556 KB
testcase_19 AC 19 ms
25,196 KB
testcase_20 AC 283 ms
25,208 KB
testcase_21 AC 84 ms
24,824 KB
testcase_22 AC 255 ms
24,824 KB
testcase_23 AC 233 ms
25,208 KB
testcase_24 AC 147 ms
25,208 KB
testcase_25 AC 65 ms
24,812 KB
testcase_26 AC 265 ms
24,568 KB
testcase_27 AC 144 ms
24,824 KB
testcase_28 AC 166 ms
24,824 KB
testcase_29 AC 192 ms
25,208 KB
testcase_30 AC 87 ms
24,568 KB
testcase_31 AC 275 ms
25,208 KB
testcase_32 AC 238 ms
24,824 KB
testcase_33 AC 185 ms
25,208 KB
testcase_34 AC 264 ms
24,824 KB
testcase_35 AC 82 ms
24,568 KB
testcase_36 AC 121 ms
24,824 KB
testcase_37 AC 44 ms
25,208 KB
testcase_38 AC 66 ms
25,208 KB
testcase_39 AC 113 ms
24,824 KB
testcase_40 AC 202 ms
24,824 KB
testcase_41 AC 283 ms
24,824 KB
testcase_42 AC 189 ms
24,824 KB
testcase_43 AC 247 ms
24,824 KB
testcase_44 AC 50 ms
24,568 KB
testcase_45 AC 176 ms
24,824 KB
testcase_46 AC 211 ms
24,568 KB
testcase_47 AC 262 ms
25,208 KB
testcase_48 AC 228 ms
24,824 KB
testcase_49 AC 213 ms
24,568 KB
testcase_50 AC 244 ms
24,764 KB
testcase_51 AC 115 ms
24,824 KB
testcase_52 AC 22 ms
25,580 KB
testcase_53 AC 23 ms
25,196 KB
testcase_54 AC 23 ms
25,196 KB
testcase_55 AC 93 ms
25,808 KB
testcase_56 AC 75 ms
24,556 KB
testcase_57 AC 54 ms
25,196 KB
testcase_58 AC 33 ms
25,196 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;
}

complex<double> query(int x, int y) {
    int xx, yy;
    scanf("%d %d", &xx, &yy);
    return C(xx, yy);
}

complex<double> query2(int x, int y) {
    int xx = -y;
    int yy = x;
    xx -= 1;
    yy -= 1;
    x = -yy;
    y = xx;
    x += 1;
    y += 1;
    return C(x, y);
}

int main() {
    int n;
    cin >> n;

    vector<C> ps(n);
    for (int i = 0; i < n; i++) {
        int x, y;
        scanf("%d %d", &x, &y);
        ps[i] = C(x, y);
    }

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

    for (int i = 0; i < 2; i++) {
        int x = xorshift() % 20001 - 10000;
        int y = xorshift() % 20001 - 10000;
        printf("? %d %d\n", x, y);
        fflush(stdout);
        a.emplace_back(x, y);
        b.emplace_back(query(x, y));
    }

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

    printf("!\n");
    for (int i = 0; i < n; i++) {
        C ans = ps[i] * A + B;
        printf("%d %d\n", (int)round(ans.real()), (int)round(ans.imag()));
    }
    fflush(stdout);
}
0