結果
問題 | No.61 リベリオン |
ユーザー | myanta |
提出日時 | 2017-05-11 10:41:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 1,138 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 43,264 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 16:15:31 |
合計ジャッジ時間 | 771 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 28 ms
5,248 KB |
testcase_04 | AC | 29 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:40:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 40 | scanf("%d%d%d%d%d%d%d%d%d", &w, &h, &d, &mx, &my, &hx, &hy, &vx, &vy); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstdlib> #include<vector> using namespace std; using vi=vector<int>; using vvi=vector<vi>; int gcd(int a, int b) { int c; while((c=a%b)) { a=b; b=c; } return b; } int laparound(int x, int m) { return (x%m+m)%m; } int main(void) { int q, w, h, d, mx, my, hx, hy, vx, vy; int x, y, i, j, t; vvi f; while(scanf("%d", &q)==1) { for(i=0;i<q;i++) { scanf("%d%d%d%d%d%d%d%d%d", &w, &h, &d, &mx, &my, &hx, &hy, &vx, &vy); //printf("w=%d h=%d d=%d vx=%d vy=%d\n", w, h, d, vx, vy); if(vx==0) { t=abs(vy); } else if(vy==0) { t=abs(vx); } else { t=gcd(abs(vx), abs(vy)); } vx/=t; vy/=t; d*=t; //printf(" w=%d h=%d d=%d vx=%d vy=%d\n", w, h, d, vx, vy); f.clear(); f.resize(2*h); for(auto& fe: f) fe.resize(2*w); x=hx; y=hy; for(j=0;j<d;j++) { x=laparound(x+vx, 2*w); y=laparound(y+vy, 2*h); if(f[y][x]) break; f[y][x]=1; } int mx2=2*w-mx; int my2=2*h-my; int hit=0; if(f[my][mx] || f[my][mx2] || f[my2][mx] || f[my2][mx2]) hit=1; printf("%s\n", hit?"Hit":"Miss"); } } return 0; }