結果

問題 No.551 夏休みの思い出(2)
ユーザー 37zigen37zigen
提出日時 2017-07-29 03:40:59
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 6,197 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 82,940 KB
実行使用メモリ 658,120 KB
最終ジャッジ日時 2024-10-10 20:46:50
合計ジャッジ時間 16,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
37,524 KB
testcase_01 AC 78 ms
37,992 KB
testcase_02 AC 85 ms
38,052 KB
testcase_03 AC 118 ms
39,956 KB
testcase_04 AC 136 ms
40,156 KB
testcase_05 AC 157 ms
40,248 KB
testcase_06 AC 160 ms
40,320 KB
testcase_07 AC 81 ms
39,456 KB
testcase_08 AC 80 ms
37,740 KB
testcase_09 AC 78 ms
37,668 KB
testcase_10 AC 87 ms
38,252 KB
testcase_11 AC 82 ms
38,160 KB
testcase_12 AC 79 ms
37,824 KB
testcase_13 AC 81 ms
39,228 KB
testcase_14 AC 81 ms
37,808 KB
testcase_15 AC 82 ms
38,056 KB
testcase_16 AC 78 ms
37,932 KB
testcase_17 AC 267 ms
64,036 KB
testcase_18 AC 642 ms
115,700 KB
testcase_19 AC 610 ms
115,852 KB
testcase_20 AC 650 ms
116,132 KB
testcase_21 AC 731 ms
130,680 KB
testcase_22 AC 167 ms
50,976 KB
testcase_23 AC 213 ms
55,512 KB
testcase_24 AC 443 ms
96,888 KB
testcase_25 AC 273 ms
63,724 KB
testcase_26 AC 468 ms
97,276 KB
testcase_27 MLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.NoSuchElementException;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	static long time = 0;

	public void run() {
		Scanner sc = new Scanner();
		int P = sc.nextInt();
		int R = sc.nextInt();
		int N = sc.nextInt();
		long[] B = new long[N];
		long[] C = new long[N];
		PrintWriter pw = new PrintWriter(System.out);
		int div = 1;
		while (P / div > 1e7) {
			++div;
		}
		HashMap<Long, Long> map = new HashMap<>();
		long cur = 1;
		long g = pow(R, div, P);
		for (long i = 0; i * div < P; ++i) {
			map.put(cur, i * div);
			cur = (cur * g) % P;
		}
		long inv2 = inv(2, P);
		for (int i = 0; i < N; ++i) {
			long A = sc.nextLong();
			B[i] = sc.nextInt();
			C[i] = sc.nextInt();
			long invA = inv(A, P);
			B[i] = invA * B[i] % P;
			C[i] = invA * C[i] % P;
			long v = B[i] * B[i] - 4 * C[i];
			v %= P;
			while (v < 0)
				v += P;
			if (v == 0 || pow(v, (P - 1) / 2, P) == 1) {
				if (v != 0) {
					v = calc(v, P, map, div, R);
					if (v % 2 == 1) {
						pw.println(-1);
					} else {
						v = pow(R, v / 2, P);
					}
				}
				long[] ans = { inv2 * (-B[i] + v), inv2 * (-B[i] + P - v) };
				for (int j = 0; j < ans.length; ++j) {
					ans[j] %= P;
					while (ans[j] < 0)
						ans[j] += P;
				}
				if (ans[0] > ans[1]) {
					long tmp = ans[0];
					ans[0] = ans[1];
					ans[1] = tmp;
				}
				if (ans[0] == ans[1]) {
					pw.println(ans[0]);
				} else {
					pw.println(ans[0] + " " + ans[1]);
				}
			} else {
				pw.println(-1);
			}
		}
		pw.close();
	}

	// x^2=aとなるxを探す
	static long calc(long a, long mod, HashMap<Long, Long> map, long div, long R) {
		long cur = a;
		long inv = inv(R, mod);
		for (int i = 0; i < div; ++i) {
			if (map.containsKey(cur)) {
				long v = map.get(cur);
				return (v + i);
			}
			cur = (cur * inv) % mod;
		}
		throw new AssertionError();
	}

	static class Poly {
		long[] val = new long[3];
		long mod;

		public Poly(long mod) {
			this.mod = mod;
		}

		void add(int deg, long v) {
			val[deg] += v;
			while (val[deg] < 0)
				val[deg] += mod;
			val[deg] %= mod;
		}

		int deg() {
			int deg = val.length - 1;
			while (deg > 0 && val[deg] == 0)
				--deg;
			return deg;
		}

		Poly mul(Poly p) {
			Poly ret = new Poly(mod);
			for (int i = 0; i < this.val.length; ++i) {
				if (val[i] == 0)
					continue;
				for (int j = 0; j < p.val.length; ++j) {
					if (p.val[j] == 0)
						continue;
					ret.add(i + j, this.val[i] * p.val[j]);
				}
			}
			return ret;
		}

		Poly mod(Poly p) {
			Poly ret = new Poly(mod);
			Poly modPoly = new Poly(mod);
			for (int i = 0; i < val.length; ++i) {
				ret.add(i, val[i]);
			}
			int max = p.deg();
			if (max == 0 && p.val[max] == 0)
				return new Poly(mod);
			long rev = (long) inv(p.val[max], mod);
			for (int i = 0; i < p.val.length; ++i) {
				modPoly.add(i, p.val[i] * rev);
			}
			for (int i = ret.val.length - 1; i >= max; --i) {
				if (ret.val[i] == 0)
					continue;
				long tmp = ret.val[i];
				for (int j = 0; j <= max; ++j) {
					ret.add(i - j, -tmp % mod * modPoly.val[max - j] % mod);
				}
			}
			return ret;
		}

		Poly gcd(Poly p) {
			int deg1 = this.deg();
			int deg2 = p.deg();
			if (deg1 > deg2) {
				return p.gcd(this);
			}
			if (deg1 == 0 && val[deg1] == 0)
				return p;
			return p.mod(this).gcd(this);
		}

		Poly pow(long n, Poly polyMod) {
			int deg = this.deg();
			if (val[deg] == 0)
				return new Poly(mod);
			Poly ret = new Poly(mod);
			ret.add(0, 1);
			Poly pow = new Poly(mod);
			for (int i = 0; i < val.length; ++i) {
				pow.add(i, val[i]);
			}
			for (; n > 0; n >>= 1, pow = pow.mul(pow), pow = pow.mod(polyMod)) {
				if (n % 2 == 1) {
					ret = ret.mul(pow);
					ret = ret.mod(polyMod);
				}
			}
			return ret;
		}
	}

	public static long inv(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;
	}

	// static long inv(long a, long mod) {
	// return pow(a, mod - 2, mod);
	// }

	static long pow(long a, long n, long mod) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = (a * a) % mod) {
			if (n % 2 == 1) {
				ret = (ret * a) % mod;
			}
		}
		return ret;
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	class Scanner {
		private final InputStream in = System.in;
		private final byte[] buffer = new byte[1024];
		private int ptr = 0;
		private int buflen = 0;

		private boolean hasNextByte() {
			if (ptr < buflen) {
				return true;
			} else {
				ptr = 0;
				try {
					buflen = in.read(buffer);
				} catch (IOException e) {
					e.printStackTrace();
				}
				if (buflen <= 0) {
					return false;
				}
			}
			return true;
		}

		private int readByte() {
			if (hasNextByte())
				return buffer[ptr++];
			else
				return -1;
		}

		private boolean isPrintableChar(int c) {
			return 33 <= c && c <= 126;
		}

		private void skipUnprintable() {
			while (hasNextByte() && !isPrintableChar(buffer[ptr]))
				ptr++;
		}

		public boolean hasNext() {
			skipUnprintable();
			return hasNextByte();
		}

		public String next() {
			if (!hasNext())
				throw new NoSuchElementException();
			StringBuilder sb = new StringBuilder();
			int b = readByte();
			while (isPrintableChar(b)) {
				sb.appendCodePoint(b);
				b = readByte();
			}
			return sb.toString();
		}

		public long nextLong() {
			if (!hasNext())
				throw new NoSuchElementException();
			long n = 0;
			boolean minus = false;
			int b = readByte();
			if (b == '-') {
				minus = true;
				b = readByte();
			}
			if (b < '0' || '9' < b) {
				throw new NumberFormatException();
			}
			while (true) {
				if ('0' <= b && b <= '9') {
					n *= 10;
					n += b - '0';
				} else if (b == -1 || !isPrintableChar(b)) {
					return minus ? -n : n;
				} else {
					throw new NumberFormatException();
				}
				b = readByte();
			}
		}

		public int nextInt() {
			return (int) nextLong();
		}
	}
}
0