結果
問題 | No.471 直列回転機 |
ユーザー | mai |
提出日時 | 2016-12-21 02:07:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 58 |
ソースコード
#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; }