結果

問題 No.849 yuki国の分割統治
ユーザー 0w10w1
提出日時 2019-07-05 23:21:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 1,236 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 213,268 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-10-06 23:07:14
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 40 ms
5,248 KB
testcase_08 AC 56 ms
6,016 KB
testcase_09 AC 52 ms
5,248 KB
testcase_10 AC 48 ms
5,248 KB
testcase_11 AC 49 ms
5,248 KB
testcase_12 AC 44 ms
5,248 KB
testcase_13 AC 55 ms
5,248 KB
testcase_14 AC 50 ms
5,248 KB
testcase_15 AC 50 ms
5,504 KB
testcase_16 AC 71 ms
7,552 KB
testcase_17 AC 37 ms
5,248 KB
testcase_18 AC 68 ms
7,680 KB
testcase_19 AC 48 ms
5,248 KB
testcase_20 AC 60 ms
6,144 KB
testcase_21 AC 30 ms
5,248 KB
testcase_22 AC 67 ms
6,912 KB
testcase_23 AC 61 ms
6,656 KB
testcase_24 AC 44 ms
5,248 KB
testcase_25 AC 79 ms
8,704 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

tuple<int, int, int> ext_gcd(int a, int b) {
  if (!b) return {1, 0, a};
  int x, y, g;
  tie(x, y, g) = ext_gcd(b, a % b);
  return {y, x - a / b * y, g};
}

signed main() {
  ios::sync_with_stdio(false);

  int A, B, C, D;
  cin >> A >> B >> C >> D;
  if (C < A) swap(A, C), swap(B, D);

  int N;
  cin >> N;

  map<pair<long long, long long>, int> gcnt;
  int gx, xx, yy; tie(xx, yy, gx) = ext_gcd(A, C);
  int gy = __gcd(B, D);
  if (!gx || !gy) {
    for (int i = 0; i < N; ++i) {
      long long x, y;
      cin >> x >> y;
      if (gx) {
        x %= gx;
        if (x < 0) x += gx;
      }
      if (gy) {
        y %= gy;
        if (y < 0) y += gy;
      }
      ++gcnt[make_pair(x, y)];
    }
  } else {
    for (int i = 0; i < N; ++i) {
      long long x, y;
      cin >> x >> y;
      if (gx <= x) {
        long long k = (x - 1) / gx;
        x -= k * gx;
        y -= 1LL * k * (1LL * xx * B + 1LL * yy * D);
      }
      long long zero = 1LL * A / gx * D - 1LL * C / gx * B;
      if (zero) {
        if (zero < 0) zero *= -1;
        y %= zero;
        if (y < 0) y += zero;
      }
      ++gcnt[make_pair(x, y)];
    }
  }

  cout << gcnt.size() << endl;

  return 0;
}
0