結果

問題 No.471 直列回転機
ユーザー PachicobuePachicobue
提出日時 2017-03-26 20:46:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 498 ms / 3,141 ms
コード長 2,221 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 70,504 KB
実行使用メモリ 25,592 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:38:07
合計ジャッジ時間 17,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,836 KB
testcase_01 AC 20 ms
25,196 KB
testcase_02 AC 21 ms
25,196 KB
testcase_03 AC 21 ms
25,196 KB
testcase_04 AC 21 ms
24,940 KB
testcase_05 AC 26 ms
24,812 KB
testcase_06 AC 25 ms
25,580 KB
testcase_07 AC 25 ms
25,580 KB
testcase_08 AC 66 ms
25,196 KB
testcase_09 AC 67 ms
24,812 KB
testcase_10 AC 43 ms
25,196 KB
testcase_11 AC 195 ms
24,556 KB
testcase_12 AC 421 ms
25,220 KB
testcase_13 AC 431 ms
24,836 KB
testcase_14 AC 458 ms
25,092 KB
testcase_15 AC 380 ms
24,836 KB
testcase_16 AC 25 ms
25,196 KB
testcase_17 AC 20 ms
25,196 KB
testcase_18 AC 21 ms
25,196 KB
testcase_19 AC 21 ms
25,196 KB
testcase_20 AC 492 ms
25,208 KB
testcase_21 AC 108 ms
25,208 KB
testcase_22 AC 415 ms
24,824 KB
testcase_23 AC 398 ms
25,208 KB
testcase_24 AC 242 ms
24,824 KB
testcase_25 AC 84 ms
24,812 KB
testcase_26 AC 477 ms
25,208 KB
testcase_27 AC 223 ms
24,824 KB
testcase_28 AC 258 ms
25,208 KB
testcase_29 AC 295 ms
25,208 KB
testcase_30 AC 124 ms
24,824 KB
testcase_31 AC 452 ms
25,592 KB
testcase_32 AC 385 ms
25,208 KB
testcase_33 AC 306 ms
24,440 KB
testcase_34 AC 448 ms
25,208 KB
testcase_35 AC 104 ms
24,824 KB
testcase_36 AC 193 ms
24,952 KB
testcase_37 AC 54 ms
25,208 KB
testcase_38 AC 96 ms
25,080 KB
testcase_39 AC 150 ms
24,824 KB
testcase_40 AC 330 ms
25,208 KB
testcase_41 AC 498 ms
25,464 KB
testcase_42 AC 297 ms
24,824 KB
testcase_43 AC 431 ms
24,568 KB
testcase_44 AC 59 ms
24,824 KB
testcase_45 AC 290 ms
24,812 KB
testcase_46 AC 319 ms
25,208 KB
testcase_47 AC 461 ms
25,208 KB
testcase_48 AC 390 ms
24,824 KB
testcase_49 AC 361 ms
25,080 KB
testcase_50 AC 443 ms
24,824 KB
testcase_51 AC 175 ms
24,824 KB
testcase_52 AC 23 ms
24,812 KB
testcase_53 AC 24 ms
25,196 KB
testcase_54 AC 28 ms
24,812 KB
testcase_55 AC 120 ms
24,812 KB
testcase_56 AC 92 ms
25,580 KB
testcase_57 AC 66 ms
25,580 KB
testcase_58 AC 42 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// clang-format off
#include <cassert>
#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>
#include <functional>
#include <set>
#include <queue>

#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 rep1(i,n) for(int i = 1; i <= (n); i++)
#define rrep(i, n) for(int i = (n)-1; i >= 0; i--)

#define pb push_back
#define mp make_pair
#define fst first
#define snd second
#define show(x) cout << #x << " = " << x << endl
#define chmin(x,y) x=min(x,y)
#define chmax(x,y) x=max(x,y)
#define pii pair<int, int>
#define vi vector<int>

using namespace std;
template<class S,class T> ostream& operator<<(ostream& o,const pair<S,T>& p){return o<<"("<<p.first<<","<<p.second<<")";}
template<class T> ostream& operator<<(ostream& o,const vector<T>& vc){o<<"sz = "<<vc.size()<<endl<<"[";for(const T& v:vc) o<<v<<",";o<<"]";return o;}
typedef long long ll;
constexpr ll MOD = 1000000007;

int M;
constexpr int MAX = 50000;
pii pos[MAX];

pii ask(const pii& p)
{
    cout << "? " << p.fst << " " << p.snd << endl;
    int x,y;
    cin >> x >> y;
    return mp(x,y);
}

pii operator+(const pii& p1, const pii& p2)
{
    return mp(p1.fst+p2.fst, p1.snd+p2.snd);
}

pii operator-(const pii& p1, const pii& p2)
{
    return mp(p1.fst-p2.fst, p1.snd-p2.snd);
}

pii rotate(int flag, const pii& p)
{
    if(flag == 0){
        return p;
    } else if (flag == 1){
        return mp(-p.snd, p.fst);
    } else if (flag == 2){
        return mp(-p.fst, -p.snd);
    } else {
        return mp(p.snd, -p.fst);
    }
}

int main()
{
    cin >> M;
    rep(i, M){
        int x ,y;
        cin >> x >> y;
        pos[i] = mp(x,y);
    }

    const pii p1 = ask(mp(0,0));
    const pii p2 = ask(mp(1,0));
    const pii d = p2-p1;
    cout << d << endl;
    int flag = 0;
    if(d == mp(1,0)){
        flag = 0;
    } else if (d == mp(0,1)) {
        flag = 1;
    } else if (d == mp(-1,0)){
        flag = 2;
    } else {
        flag = 3;
    }

    cout << "!" << endl;
    rep(i, M){
        const pii ans = p1 + rotate(flag, pos[i]);
        cout << ans.fst << " " << ans.snd << endl;
    }

    return 0;
}
0