結果

問題 No.551 夏休みの思い出(2)
ユーザー 37zigen37zigen
提出日時 2017-07-29 00:29:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,955 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 80,280 KB
実行使用メモリ 55,088 KB
最終ジャッジ日時 2024-04-18 17:48:40
合計ジャッジ時間 14,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
55,088 KB
testcase_01 AC 179 ms
43,128 KB
testcase_02 AC 221 ms
43,632 KB
testcase_03 AC 281 ms
47,172 KB
testcase_04 AC 303 ms
47,404 KB
testcase_05 AC 382 ms
48,544 KB
testcase_06 AC 418 ms
47,744 KB
testcase_07 AC 179 ms
42,840 KB
testcase_08 AC 179 ms
43,224 KB
testcase_09 AC 178 ms
42,932 KB
testcase_10 AC 186 ms
43,116 KB
testcase_11 AC 175 ms
43,268 KB
testcase_12 AC 175 ms
42,968 KB
testcase_13 AC 177 ms
43,328 KB
testcase_14 AC 179 ms
42,856 KB
testcase_15 AC 179 ms
43,368 KB
testcase_16 AC 185 ms
43,364 KB
testcase_17 AC 226 ms
44,328 KB
testcase_18 AC 233 ms
44,000 KB
testcase_19 AC 236 ms
44,128 KB
testcase_20 AC 240 ms
45,804 KB
testcase_21 AC 244 ms
44,904 KB
testcase_22 AC 225 ms
44,424 KB
testcase_23 AC 234 ms
44,616 KB
testcase_24 AC 238 ms
45,124 KB
testcase_25 AC 226 ms
44,376 KB
testcase_26 AC 229 ms
44,172 KB
testcase_27 TLE -
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.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

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

	public void run() {
		Scanner sc = new Scanner(System.in);
		int P = sc.nextInt();
		int R = sc.nextInt();
		int N = sc.nextInt();
		long[] A = new long[N];
		long[] B = new long[N];
		long[] C = new long[N];
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < N; ++i) {
			A[i] = sc.nextInt();
			B[i] = sc.nextInt();
			C[i] = sc.nextInt();
			A[i] %= P;
			B[i] %= P;
			C[i] %= P;
			B[i] = inv(A[i], P) * B[i] % P;
			C[i] = inv(A[i], P) * C[i] % P;
			A[i] = 1;
			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) {
				v = calc(v, P);
				long[] ans = { inv(2, P) * (-B[i] + v), inv(2, P) * (-B[i] + P - v) };
				for (int j = 0; j < ans.length; ++j) {
					ans[j] %= P;
					while (ans[j] < 0)
						ans[j] += P;
				}
				Arrays.sort(ans);
				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) {
		for (int b = 0; b < 100; ++b) {
			Poly p1 = new Poly(mod);
			Poly p2 = new Poly(mod);// (x-b)^2-a=0 mod p x=ans+b (Ax-ans-b)
			p2.add(2, 1);
			p2.add(1, -2 * b);
			p2.add(0, b * b - a);
			p1.add(1, 1);
			p1 = p1.pow((mod - 1) / 2, p2);
			p1.add(0, -1);
			Poly gcd = p1.gcd(p2);
			if (gcd.deg() == 1) {
				long ans = (long) (-b - inv(gcd.val[1], mod) * gcd.val[0]);
				while (ans < 0)
					ans += mod;
				return ans;
			}
		}
		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;
		}
	}

	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;
	}

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