結果

問題 No.849 yuki国の分割統治
ユーザー satashunsatashun
提出日時 2019-07-05 22:48:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,643 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 172,032 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-04-16 07:55:29
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 99 ms
6,944 KB
testcase_09 AC 101 ms
6,944 KB
testcase_10 AC 102 ms
6,940 KB
testcase_11 AC 91 ms
6,940 KB
testcase_12 AC 97 ms
6,940 KB
testcase_13 AC 107 ms
6,940 KB
testcase_14 AC 103 ms
6,944 KB
testcase_15 AC 94 ms
6,944 KB
testcase_16 AC 133 ms
8,064 KB
testcase_17 AC 96 ms
6,944 KB
testcase_18 AC 124 ms
8,320 KB
testcase_19 AC 104 ms
6,944 KB
testcase_20 AC 118 ms
6,944 KB
testcase_21 AC 88 ms
6,940 KB
testcase_22 AC 125 ms
7,680 KB
testcase_23 AC 123 ms
7,168 KB
testcase_24 WA -
testcase_25 AC 137 ms
9,344 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef pair<int, int> pii;
typedef long long ll;
typedef vector<int> vi;

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define rep(i,n) rep2(i,0,n)
#define rep2(i,m,n) for(int i=m;i<(n);i++)
#define ALL(c) (c).begin(),(c).end()
#define dump(x) cout << #x << " = " << (x) << endl
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); }

template<class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
	os<<"("<<p.first<<","<<p.second<<")";
	return os;
}
 
template<class T>
ostream& operator<<(ostream& os, const vector<T>& v) {
	os<<"{";
	rep(i, v.size()) {
		if (i) os<<",";
		os<<v[i];
	}
	os<<"}";
	return os;
}

int main() {
	ll a, b, c, d; cin >> a >> b >> c >> d;
	int N; cin >> N; 
	vector<pii> vec(N);
	rep(i, N) cin >> vec[i].fi >> vec[i].se;

	if (a * d == b * c) {
		ll p = __gcd(a, b);
		ll u = __gcd(a / p, c / p);
		ll e = a / p * u, f = b / p * u;
		set<pair<ll, ll>> st;

		rep(i, N) {
			ll md = 1e18;
			if (e != 0) md = vec[i].fi / e;
			if (f != 0) md = min(md, vec[i].se / f);
			st.insert(mp(vec[i].fi - md * e, vec[i].se - md * f));
		}
		cout << st.size() << endl;
	} else {
		set<pair<ll, ll>> st;

		ll z = abs(a * d - b * c);
		ll m = __gcd(z, a);
		m = __gcd(m, b); m = __gcd(m, c); m = __gcd(m, d);
		z /= m; a /= m; b /= m; c /= m; d /= m;

		rep(i, N) {
			ll x = (vec[i].fi * d - vec[i].se * c);
			ll y = (-vec[i].fi * b + vec[i].se * a);
			x %= z;
			y %= z;
			if (x < 0) x += z;
			if (y < 0) y += z;
			st.insert(mp(x, y));
		}
		cout << st.size() << endl;
	}

	return 0;
}
0