結果

問題 No.471 直列回転機
ユーザー koyoprokoyopro
提出日時 2020-02-04 03:06:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 304 ms / 3,141 ms
コード長 1,581 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 158,288 KB
実行使用メモリ 25,592 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:45:06
合計ジャッジ時間 12,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,592 KB
testcase_01 AC 20 ms
24,812 KB
testcase_02 AC 19 ms
24,940 KB
testcase_03 AC 19 ms
24,556 KB
testcase_04 AC 19 ms
24,812 KB
testcase_05 AC 20 ms
25,196 KB
testcase_06 AC 20 ms
25,196 KB
testcase_07 AC 20 ms
24,940 KB
testcase_08 AC 37 ms
24,812 KB
testcase_09 AC 46 ms
25,196 KB
testcase_10 AC 27 ms
25,196 KB
testcase_11 AC 135 ms
24,812 KB
testcase_12 AC 261 ms
24,964 KB
testcase_13 AC 250 ms
25,208 KB
testcase_14 AC 271 ms
24,580 KB
testcase_15 AC 304 ms
24,836 KB
testcase_16 AC 21 ms
25,436 KB
testcase_17 AC 20 ms
24,812 KB
testcase_18 AC 19 ms
24,812 KB
testcase_19 AC 19 ms
24,556 KB
testcase_20 AC 278 ms
25,208 KB
testcase_21 AC 72 ms
24,824 KB
testcase_22 AC 253 ms
24,568 KB
testcase_23 AC 226 ms
25,208 KB
testcase_24 AC 151 ms
24,568 KB
testcase_25 AC 63 ms
25,208 KB
testcase_26 AC 281 ms
24,952 KB
testcase_27 AC 151 ms
25,208 KB
testcase_28 AC 160 ms
24,824 KB
testcase_29 AC 185 ms
24,568 KB
testcase_30 AC 88 ms
25,208 KB
testcase_31 AC 281 ms
24,824 KB
testcase_32 AC 233 ms
24,824 KB
testcase_33 AC 184 ms
25,208 KB
testcase_34 AC 263 ms
24,824 KB
testcase_35 AC 81 ms
24,824 KB
testcase_36 AC 133 ms
24,824 KB
testcase_37 AC 45 ms
25,208 KB
testcase_38 AC 65 ms
25,436 KB
testcase_39 AC 107 ms
25,208 KB
testcase_40 AC 206 ms
24,796 KB
testcase_41 AC 290 ms
24,824 KB
testcase_42 AC 186 ms
25,208 KB
testcase_43 AC 253 ms
25,208 KB
testcase_44 AC 49 ms
25,208 KB
testcase_45 AC 187 ms
25,592 KB
testcase_46 AC 200 ms
24,952 KB
testcase_47 AC 245 ms
25,208 KB
testcase_48 AC 237 ms
25,208 KB
testcase_49 AC 215 ms
24,824 KB
testcase_50 AC 257 ms
24,824 KB
testcase_51 AC 115 ms
25,208 KB
testcase_52 AC 22 ms
25,196 KB
testcase_53 AC 23 ms
25,196 KB
testcase_54 AC 21 ms
24,812 KB
testcase_55 AC 85 ms
25,196 KB
testcase_56 AC 72 ms
24,812 KB
testcase_57 AC 54 ms
25,196 KB
testcase_58 AC 34 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
//#if DEBUG
//    std::ifstream in("input.txt");
//    std::cin.rdbuf(in.rdbuf());
//#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/
#if DEBUG
#define SIZE 100
#else
#define SIZE 123450
#endif

int N,M,Q;
int P[123450][2];

void query(int x, int y, int *x0, int *y0) {
    out("? %lld %lld\n", x, y);
    fflush(stdout);
    cin >> *x0 >> *y0;
}

void solve() {
    cin>>M;
    REP(i,M) {
        cin>>P[i][0]>>P[i][1];
    }
    
    int x0,y0,x1,y1,x2,y2;
    query(0, 0, &x0, &y0);
    query(1, 0, &x1, &y1);
    query(0, 1, &x2, &y2);
    
    /*
     |xn| |a b c||x|
     |yn|=|d e f||y|
     | 1| |0 0 1||1|
     */
    int a,b,c,d,e,f;
    c = x0;
    a = x1 - x0;
    b = x2 - x0;
    f = y0;
    d = y1 - y0;
    e = y2 - y0;
    cout << "!" << endl;
    REP(i,M) {
        int x = a*P[i][0] + b*P[i][1]+c;
        int y = d*P[i][0] + e*P[i][1]+f;
        out("%lld %lld\n",x,y);
    }
}
0