結果
問題 | No.471 直列回転機 |
ユーザー | mai |
提出日時 | 2016-12-21 02:07:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 302 ms / 3,141 ms |
コード長 | 2,601 bytes |
コンパイル時間 | 1,679 ms |
コンパイル使用メモリ | 167,472 KB |
実行使用メモリ | 25,592 KB |
平均クエリ数 | 19590.39 |
最終ジャッジ日時 | 2024-06-11 10:25:46 |
合計ジャッジ時間 | 13,142 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,220 KB |
testcase_01 | AC | 23 ms
24,556 KB |
testcase_02 | AC | 22 ms
25,196 KB |
testcase_03 | AC | 23 ms
24,556 KB |
testcase_04 | AC | 20 ms
24,812 KB |
testcase_05 | AC | 22 ms
24,800 KB |
testcase_06 | AC | 20 ms
24,812 KB |
testcase_07 | AC | 22 ms
24,812 KB |
testcase_08 | AC | 43 ms
25,196 KB |
testcase_09 | AC | 42 ms
24,940 KB |
testcase_10 | AC | 34 ms
25,196 KB |
testcase_11 | AC | 135 ms
25,196 KB |
testcase_12 | AC | 253 ms
25,220 KB |
testcase_13 | AC | 248 ms
25,220 KB |
testcase_14 | AC | 276 ms
25,220 KB |
testcase_15 | AC | 302 ms
25,220 KB |
testcase_16 | AC | 23 ms
24,952 KB |
testcase_17 | AC | 20 ms
24,812 KB |
testcase_18 | AC | 19 ms
24,556 KB |
testcase_19 | AC | 20 ms
24,812 KB |
testcase_20 | AC | 283 ms
24,568 KB |
testcase_21 | AC | 77 ms
25,208 KB |
testcase_22 | AC | 251 ms
25,208 KB |
testcase_23 | AC | 235 ms
24,824 KB |
testcase_24 | AC | 142 ms
24,824 KB |
testcase_25 | AC | 65 ms
24,824 KB |
testcase_26 | AC | 267 ms
25,080 KB |
testcase_27 | AC | 140 ms
24,556 KB |
testcase_28 | AC | 174 ms
24,568 KB |
testcase_29 | AC | 180 ms
24,824 KB |
testcase_30 | AC | 87 ms
25,208 KB |
testcase_31 | AC | 271 ms
24,824 KB |
testcase_32 | AC | 241 ms
24,824 KB |
testcase_33 | AC | 190 ms
25,208 KB |
testcase_34 | AC | 272 ms
25,208 KB |
testcase_35 | AC | 77 ms
25,080 KB |
testcase_36 | AC | 122 ms
25,208 KB |
testcase_37 | AC | 46 ms
24,812 KB |
testcase_38 | AC | 76 ms
24,824 KB |
testcase_39 | AC | 110 ms
25,080 KB |
testcase_40 | AC | 207 ms
25,208 KB |
testcase_41 | AC | 281 ms
25,208 KB |
testcase_42 | AC | 182 ms
25,068 KB |
testcase_43 | AC | 245 ms
24,824 KB |
testcase_44 | AC | 51 ms
25,592 KB |
testcase_45 | AC | 176 ms
24,824 KB |
testcase_46 | AC | 204 ms
24,952 KB |
testcase_47 | AC | 284 ms
25,208 KB |
testcase_48 | AC | 247 ms
25,208 KB |
testcase_49 | AC | 244 ms
24,824 KB |
testcase_50 | AC | 249 ms
25,208 KB |
testcase_51 | AC | 115 ms
24,568 KB |
testcase_52 | AC | 25 ms
25,196 KB |
testcase_53 | AC | 26 ms
24,556 KB |
testcase_54 | AC | 23 ms
24,940 KB |
testcase_55 | AC | 86 ms
25,068 KB |
testcase_56 | AC | 75 ms
25,196 KB |
testcase_57 | AC | 60 ms
25,196 KB |
testcase_58 | AC | 37 ms
24,800 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef unsigned int uint; typedef long long int ll; typedef unsigned long long int ull; #define debugv(v) printf("L%d %s => ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl; #define debugm(m) printf("L%d %s is..\n",__LINE__,#m);for(auto v:m){for(auto e:v){cout<<e<<" ";}cout<<endl;} #define debuga(m,w) printf("L%d %s is => ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl; #define debugaa(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[x][y]<<" ";}cout<<endl;} #define debugaar(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[y][x]<<" ";}cout<<endl;} #define ALL(v) (v).begin(),(v).end() #define BIGINT 0x7FFFFFFF #define E107 1000000007ll void printbit(int u){if(u==0)cout<<0;else{int s=0,k=0;for(;0<u;u>>=1,k++)s=(s<<1)|(u&1);for(;0<k--;s>>=1)cout<<(s&1);}} #define TIME chrono::system_clock::now() #define MILLISEC(t) (chrono::duration_cast<chrono::milliseconds>(t).count()) template<typename T1,typename T2> ostream& operator <<(ostream &o,const pair<T1,T2> p){o<<"("<<p.first<<":"<<p.second<<")";return o;} struct point{ int x,y; point():x(0),y(0){} point(int xx,int yy):x(xx),y(yy){} }; int width,height; int m,n; point data[101010]; void query(const point& from,point& to){ cout << "? " << from.x << " " << from.y << endl; scanf("%d%d",&(to.x),&(to.y)); } void rotate(point& p,const int cnt){ if (cnt<=0) return; int t=p.y; p.y = -p.x; p.x = t; rotate(p,cnt-1); } int main(){ int i,j,k; int x,y,a,b; cin >> m; for (i=0;i<m;i++){ scanf("%d%d",&(data[i].x),&(data[i].y)); } point p1(0,0),p2(0,1),p3(1,1),p4(1,0); query(p1,p1); query(p2,p2); query(p3,p3); query(p4,p4); int rc = 0; point offset,zoom; if (p1.x<p3.x && p1.y>p3.y){ rc =1; // rotate 1 offset = p1; zoom.x = p2.x-p4.x; zoom.y = p2.y-p4.y; }else if (p1.x>p3.x && p1.y>p3.y){ rc =2; offset = p1; zoom.x = p1.x-p3.x; zoom.y = p1.y-p3.y; }else if (p1.x>p3.x && p1.y<p3.y){ rc =3; offset = p1; zoom.x = p4.x-p2.x; zoom.y = p4.y-p2.y; }else{ offset = p1; zoom.x = p3.x-p1.x; zoom.y = p3.y-p1.y; } printf("!\n"); for (i=0;i<m;i++){ rotate(data[i],rc); printf("%d %d\n",offset.x + data[i].x*zoom.x,offset.y + data[i].y*zoom.y); } cout.flush(); return 0; }