結果

問題 No.849 yuki国の分割統治
ユーザー hiromi_ayasehiromi_ayase
提出日時 2019-07-06 00:14:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 4,376 bytes
コンパイル時間 4,317 ms
コンパイル使用メモリ 91,100 KB
実行使用メモリ 74,668 KB
最終ジャッジ日時 2024-10-06 23:27:37
合計ジャッジ時間 16,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
53,244 KB
testcase_01 AC 101 ms
53,176 KB
testcase_02 AC 102 ms
53,220 KB
testcase_03 AC 97 ms
53,116 KB
testcase_04 AC 95 ms
52,940 KB
testcase_05 AC 98 ms
53,016 KB
testcase_06 AC 96 ms
52,828 KB
testcase_07 AC 476 ms
65,584 KB
testcase_08 AC 645 ms
67,772 KB
testcase_09 AC 638 ms
68,016 KB
testcase_10 AC 641 ms
65,392 KB
testcase_11 AC 601 ms
66,464 KB
testcase_12 AC 628 ms
65,860 KB
testcase_13 AC 648 ms
67,384 KB
testcase_14 AC 641 ms
66,732 KB
testcase_15 AC 623 ms
67,624 KB
testcase_16 AC 743 ms
69,708 KB
testcase_17 AC 630 ms
66,008 KB
testcase_18 AC 760 ms
70,304 KB
testcase_19 AC 682 ms
66,576 KB
testcase_20 AC 731 ms
67,148 KB
testcase_21 AC 485 ms
65,568 KB
testcase_22 AC 536 ms
68,248 KB
testcase_23 AC 513 ms
68,048 KB
testcase_24 AC 482 ms
65,636 KB
testcase_25 AC 774 ms
74,668 KB
testcase_26 AC 91 ms
53,160 KB
testcase_27 AC 91 ms
53,264 KB
testcase_28 AC 91 ms
52,956 KB
testcase_29 AC 90 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.HashSet;
import java.util.Set;

public class Main {

  private static void solve() {

    long a = nl();
    long b = nl();
    long c = nl();
    long d = nl();

    int n = ni();
    long[][] p = new long[n][2];

    for (int i = 0; i < n; i++) {
      p[i] = new long[] {nl(), nl()};
    }

    long det = Math.abs(a * d - b * c);
    Set<String> set = new HashSet<>();
    if (det == 0) {
      long g = gcd(a, c);
      // b/a * g

      if (g != 0) {
        for (long[] v : p) {
          long x = v[0] % g;
          long y = v[1] * a - v[0] * b;
          set.add(x + ":" + y);
        }
      } else {
        g = gcd(b, d);
        for (long[] v : p) {
          long x = v[0] * b - v[1] * a;
          long y = v[1] % g;
          set.add(x + ":" + y);
        }
      }
      System.out.println(set.size());
    } else {

      for (long[] v : p) {

        long s = v[0] * d - v[1] * c;
        long t = -v[0] * b + v[1] * a;

        long s2 = s % det;
        long t2 = t % det;
        if (s2 < 0)
          s2 += det;
        if (t2 < 0)
          t2 += det;

        long v0 = BigInteger.valueOf(a).multiply(BigInteger.valueOf(s2))
            .add(BigInteger.valueOf(c).multiply(BigInteger.valueOf(t2)))
            .divide(BigInteger.valueOf(det)).longValue();
        long v1 = BigInteger.valueOf(b).multiply(BigInteger.valueOf(s2))
            .add(BigInteger.valueOf(d).multiply(BigInteger.valueOf(t2)))
            .divide(BigInteger.valueOf(det)).longValue();
        set.add(v0 + ":" + v1);
      }
      System.out.println(set.size());
    }
  }

  public static long invl(long a, long mod) {
    long b = mod;
    long p = 1, q = 0;
    while (b > 0) {
      long c = a / b;
      long d;
      d = a;
      a = b;
      b = d % b;
      d = p;
      p = q;
      q = d - c * q;
    }
    return p < 0 ? p + mod : p;
  }


  public static long gcd(long a, long b) {
    while (b > 0) {
      long c = a;
      a = b;
      b = c % b;
    }
    return a;
  }


  public static void main(String[] args) {
    new Thread(null, new Runnable() {
      @Override
      public void run() {
        long start = System.currentTimeMillis();
        String debug = args.length > 0 ? args[0] : null;
        if (debug != null) {
          try {
            is = java.nio.file.Files.newInputStream(java.nio.file.Paths.get(debug));
          } catch (Exception e) {
            throw new RuntimeException(e);
          }
        }
        reader = new java.io.BufferedReader(new java.io.InputStreamReader(is), 32768);
        solve();
        out.flush();
        tr((System.currentTimeMillis() - start) + "ms");
      }
    }, "", 64000000).start();
  }

  private static java.io.InputStream is = System.in;
  private static java.io.PrintWriter out = new java.io.PrintWriter(System.out);
  private static java.util.StringTokenizer tokenizer = null;
  private static java.io.BufferedReader reader;

  public static String next() {
    while (tokenizer == null || !tokenizer.hasMoreTokens()) {
      try {
        tokenizer = new java.util.StringTokenizer(reader.readLine());
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }
    return tokenizer.nextToken();
  }

  private static double nd() {
    return Double.parseDouble(next());
  }

  private static long nl() {
    return Long.parseLong(next());
  }

  private static int[] na(int n) {
    int[] a = new int[n];
    for (int i = 0; i < n; i++)
      a[i] = ni();
    return a;
  }

  private static char[] ns() {
    return next().toCharArray();
  }

  private static long[] nal(int n) {
    long[] a = new long[n];
    for (int i = 0; i < n; i++)
      a[i] = nl();
    return a;
  }

  private static int[][] ntable(int n, int m) {
    int[][] table = new int[n][m];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[i][j] = ni();
      }
    }
    return table;
  }

  private static int[][] nlist(int n, int m) {
    int[][] table = new int[m][n];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[j][i] = ni();
      }
    }
    return table;
  }

  private static int ni() {
    return Integer.parseInt(next());
  }

  private static void tr(Object... o) {
    if (is != System.in)
      System.out.println(java.util.Arrays.deepToString(o));
  }
}

0