結果

問題 No.849 yuki国の分割統治
ユーザー hiromi_ayasehiromi_ayase
提出日時 2019-07-06 00:14:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 4,376 bytes
コンパイル時間 2,755 ms
コンパイル使用メモリ 90,064 KB
実行使用メモリ 74,732 KB
最終ジャッジ日時 2024-04-16 08:18:03
合計ジャッジ時間 20,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,116 KB
testcase_01 AC 108 ms
53,184 KB
testcase_02 AC 113 ms
53,460 KB
testcase_03 AC 107 ms
52,976 KB
testcase_04 AC 104 ms
53,420 KB
testcase_05 AC 110 ms
53,400 KB
testcase_06 AC 101 ms
52,828 KB
testcase_07 AC 520 ms
65,760 KB
testcase_08 AC 769 ms
68,028 KB
testcase_09 AC 781 ms
67,744 KB
testcase_10 AC 750 ms
66,196 KB
testcase_11 AC 735 ms
67,104 KB
testcase_12 AC 706 ms
66,340 KB
testcase_13 AC 798 ms
67,516 KB
testcase_14 AC 852 ms
66,600 KB
testcase_15 AC 793 ms
68,140 KB
testcase_16 AC 885 ms
69,740 KB
testcase_17 AC 750 ms
66,128 KB
testcase_18 AC 914 ms
70,524 KB
testcase_19 AC 818 ms
66,328 KB
testcase_20 AC 874 ms
67,988 KB
testcase_21 AC 553 ms
65,728 KB
testcase_22 AC 601 ms
68,504 KB
testcase_23 AC 590 ms
68,236 KB
testcase_24 AC 568 ms
65,696 KB
testcase_25 AC 929 ms
74,732 KB
testcase_26 AC 102 ms
53,384 KB
testcase_27 AC 100 ms
53,332 KB
testcase_28 AC 98 ms
53,096 KB
testcase_29 AC 102 ms
53,264 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