結果

問題 No.849 yuki国の分割統治
ユーザー satashun
提出日時 2019-07-05 22:51:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,657 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 176,184 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-10-06 22:46:29
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

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 q = __gcd(c, d);
		ll u = __gcd(p, q);
		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