結果

問題 No.62 リベリオン(Extra)
ユーザー t98slidert98slider
提出日時 2022-05-17 14:06:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 865 bytes
コンパイル時間 1,297 ms
コンパイル使用メモリ 103,464 KB
最終ジャッジ日時 2024-09-15 08:32:31
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'bool solve()':
main.cpp:8:9: error: 'cin' was not declared in this scope
    8 |         cin >> W >> H >> D >> Mx >> My >> Hx >> Hy >> Vx >> Vy;
      |         ^~~
main.cpp:2:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
    1 | #include<atcoder/all>
  +++ |+#include <iostream>
    2 | using namespace std;
main.cpp: In function 'int main()':
main.cpp:30:14: error: incomplete type 'std::ios' {aka 'std::basic_ios<char>'} used in nested name specifier
   30 |         ios::sync_with_stdio(false);
      |              ^~~~~~~~~~~~~~~
main.cpp:31:5: error: 'cin' was not declared in this scope
   31 |     cin.tie(nullptr);
      |     ^~~
main.cpp:31:5: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
main.cpp:35:17: error: 'cout' was not declared in this scope
   35 |                 cout << (solve() ? "Hit" : "Miss") << '\n';
      |                 ^~~~
main.cpp:35:17: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?

ソースコード

diff #

#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;

bool solve(){
	ll W, H, D, Mx, My, Hx, Hy, Vx, Vy, g, gx, gy, Dx, Dy;
	cin >> W >> H >> D >> Mx >> My >> Hx >> Hy >> Vx >> Vy;
	g = gcd(Vx, Vy);
	Vx /= g, Vy /= g, D *= g;
	gx = gcd(Vx, 2 * W), gy = gcd(Vy, 2 * H);
	Vx /= gx, Dx = 2 * W / gx;
	Vy /= gy, Dy = 2 * H / gy;
	for(int i = 0; i < 4; i++){
		ll mx = (i & 1? 1: -1) * Mx - Hx;
		ll my = (i & 2? 1: -1) * My - Hy;
		if(mx % gx != 0 || my % gy != 0)continue;
		mx /= gx, my /= gy;
		(mx *= inv_mod(Vx, Dx)) %= Dx;
		(my *= inv_mod(Vy, Dy)) %= Dy;
		auto res = crt({mx, my}, {Dx, Dy});
		if(res.second == 0)continue;
		if(res.first <= D)return true;
	}
	return false;
}


int main(){
	ios::sync_with_stdio(false);
    cin.tie(nullptr);
	int t;
	cin >> t;
	while(t--){
		cout << (solve() ? "Hit" : "Miss") << '\n';
	}
}
0