結果

問題 No.471 直列回転機
ユーザー pekempey
提出日時 2016-12-21 00:19:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 985 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 171,592 KB
実行使用メモリ 25,716 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-07-16 11:33:21
合計ジャッジ時間 20,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 58
権限があれば一括ダウンロードができます

ソースコード

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() {
    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 < 3; i++) {
        int x = xorshift() % 20001 - 10000;
        int y = xorshift() % 20001 - 10000;
        printf("? %d %d\n", &x, &y);
        fflush(stdout);
        a.emplace_back(x, y);
        
        int xx, yy;
        scanf("%d %d", &xx, &yy);
        b.emplace_back(xx, yy);
    }

    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