結果

問題 No.1932 動く点 P / Moving Point P
ユーザー tailstails
提出日時 2022-05-10 21:18:46
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 195 ms / 6,000 ms
コード長 1,069 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 34,652 KB
実行使用メモリ 11,784 KB
最終ジャッジ日時 2024-07-18 04:07:14
合計ジャッジ時間 15,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 42 ms
7,552 KB
testcase_02 AC 13 ms
6,944 KB
testcase_03 AC 101 ms
6,940 KB
testcase_04 AC 105 ms
6,940 KB
testcase_05 AC 153 ms
7,928 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 189 ms
11,784 KB
testcase_08 AC 195 ms
11,776 KB
testcase_09 AC 161 ms
11,528 KB
testcase_10 AC 176 ms
11,520 KB
testcase_11 AC 173 ms
11,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:5:26: warning: initialization of 'long int' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
    5 | #define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
      |                          ^
main.c:43:26: note: in expansion of macro 'rdf'
   43 |                 double p=rdf(),q=rdf(),r=rdf();
      |                          ^~~
main.c:5:26: note: (near initialization for 'p')
    5 | #define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
      |                          ^
main.c:43:26: note: in expansion of macro 'rdf'
   43 |                 double p=rdf(),q=rdf(),r=rdf();
      |                          ^~~
main.c:5:26: warning: initialization of 'long int' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
    5 | #define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
      |                          ^
main.c:43:34: note: in expansion of macro 'rdf'
   43 |                 double p=rdf(),q=rdf(),r=rdf();
      |                                  ^~~
main.c:5:26: note: (near initialization for 'q')
    5 | #define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
      |                          ^
main.c:43:34: note: in expansion of macro 'rdf'
   43 |                 double p=rdf(),q=rdf(),r=rdf();
      |                                  ^~~
main.c:5:26: warning: initialization of 'long int' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
    5 | #define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
      |                          ^
main.c:43:42: note: in expansion of macro 'rdf'
   43 |                 double p=rdf(),q=rdf(),r=rdf();
      |                                          ^~~
main.c:5:26: note: (near initialization for 'r')
    5 | #define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
      |

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

#define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define rdf() ({long neg=*rp=='-'?++rp:0,a=rd(),b=rd();(neg?-1:1)*(a+b*1e-6);})
#define rep(v,e) for(long v=0;v<e;++v)
#define PI 3.14159265358979

typedef struct M{
	double c,s,x,y;
}M;

static M compose(M a,M b){
	M r;
	r.c=b.c*a.c-b.s*a.s;
	r.s=b.s*a.c+b.c*a.s;
	r.x=a.c*b.x-a.s*b.y+a.x;
	r.y=a.s*b.x+a.c*b.y+a.y;
	return r;
}

static M invert(M a){
	M r;
	r.c=a.c;
	r.s=-a.s;
	r.x=-a.c*a.x-a.s*a.y;
	r.y= a.s*a.x-a.c*a.y;
	return r;
}

M ms[100001];

int main(){
	char*mmap();
	char*rp=mmap(0l,1l<<25,1,2,0,0ll);

	long n=rd();
	ms[0].c=1;
	ms[0].s=0;
	ms[0].x=0;
	ms[0].y=0;
	rep(i,n){
		double p=rdf(),q=rdf(),r=rdf();
		double c,s;
		sincos(PI/180*r,&s,&c);
		M m;
		m.c=c;
		m.s=s;
		m.x=(1-c)*p+s*q;
		m.y=-s*p+(1-c)*q;
		ms[i+1]=compose(m,ms[i]);
	}

	long q=rd();
	rep(j,q){
		long s=rd(),t=rd();
		double x=rdf(),y=rdf();
		M m=compose(ms[t],invert(ms[s-1]));
		printf("%f %f\n",m.c*x-m.s*y+m.x,m.s*x+m.c*y+m.y);
	}
	return 0;
}
0