結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,580 KB
testcase_01 AC 20 ms
24,812 KB
testcase_02 AC 20 ms
25,324 KB
testcase_03 AC 19 ms
24,812 KB
testcase_04 AC 18 ms
25,196 KB
testcase_05 AC 20 ms
24,812 KB
testcase_06 AC 25 ms
24,940 KB
testcase_07 AC 20 ms
24,812 KB
testcase_08 AC 43 ms
25,196 KB
testcase_09 AC 40 ms
25,580 KB
testcase_10 AC 30 ms
24,556 KB
testcase_11 AC 128 ms
24,940 KB
testcase_12 AC 229 ms
24,580 KB
testcase_13 AC 243 ms
24,964 KB
testcase_14 AC 271 ms
25,220 KB
testcase_15 AC 299 ms
25,220 KB
testcase_16 AC 22 ms
25,100 KB
testcase_17 AC 22 ms
24,812 KB
testcase_18 AC 20 ms
25,196 KB
testcase_19 AC 19 ms
25,580 KB
testcase_20 AC 283 ms
25,208 KB
testcase_21 AC 72 ms
25,208 KB
testcase_22 AC 247 ms
24,952 KB
testcase_23 AC 224 ms
24,568 KB
testcase_24 AC 143 ms
24,824 KB
testcase_25 AC 62 ms
25,208 KB
testcase_26 AC 267 ms
24,824 KB
testcase_27 AC 139 ms
24,824 KB
testcase_28 AC 156 ms
24,952 KB
testcase_29 AC 183 ms
24,952 KB
testcase_30 AC 88 ms
25,208 KB
testcase_31 AC 269 ms
24,568 KB
testcase_32 AC 236 ms
24,824 KB
testcase_33 AC 174 ms
24,824 KB
testcase_34 AC 260 ms
24,952 KB
testcase_35 AC 86 ms
24,568 KB
testcase_36 AC 117 ms
24,952 KB
testcase_37 AC 41 ms
24,952 KB
testcase_38 AC 66 ms
25,336 KB
testcase_39 AC 108 ms
25,208 KB
testcase_40 AC 200 ms
24,796 KB
testcase_41 AC 279 ms
24,568 KB
testcase_42 AC 178 ms
25,208 KB
testcase_43 AC 261 ms
24,824 KB
testcase_44 AC 48 ms
24,812 KB
testcase_45 AC 183 ms
24,824 KB
testcase_46 AC 207 ms
24,824 KB
testcase_47 AC 252 ms
24,568 KB
testcase_48 AC 220 ms
25,208 KB
testcase_49 AC 211 ms
25,208 KB
testcase_50 AC 250 ms
24,824 KB
testcase_51 AC 112 ms
24,568 KB
testcase_52 AC 22 ms
24,812 KB
testcase_53 AC 22 ms
24,812 KB
testcase_54 AC 21 ms
24,556 KB
testcase_55 AC 84 ms
25,196 KB
testcase_56 AC 70 ms
25,196 KB
testcase_57 AC 53 ms
25,196 KB
testcase_58 AC 29 ms
25,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define mt make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

void o() {
    fflush(stdout);
}

pair<ll, ll> q(int x, int y) {
    printf("? %d %d\n", x, y);
    o();
    ll xx, yy;
    scanf("%lld%lld", &xx, &yy);
    return mp(xx, yy);
}

int main(){
    int M;
    scanf("%d", &M);
    vi X(M), Y(M);
    rep(i, M) {
        scanf("%d%d", &X[i], &Y[i]);
    }

    // |a b e|
    // |c d f|
    // |0 0 1|
    
    ll a, b, c, d, e, f, g, h;
    tie(e, f) = q(0, 0);
    tie(a, c) = q(1, 0);
    tie(b, d) = q(0, 1);
    a -= e; b -= e; c -= f; d -= f;

    printf("!\n");
    rep(i, M) {
        ll x = X[i], y = Y[i];
        ll xx = a*x + b*y + e, yy = c*x + d*y + f;
        printf("%lld %lld\n", xx, yy);
    }
    o();
}
0