結果
問題 | No.577 Prime Powerful Numbers |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-04-20 17:12:20 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 1,186 ms / 2,000 ms |
コード長 | 3,882 bytes |
コンパイル時間 | 1,655 ms |
コンパイル使用メモリ | 158,028 KB |
実行使用メモリ | 34,584 KB |
最終ジャッジ日時 | 2024-06-22 00:51:45 |
合計ジャッジ時間 | 7,158 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
20,524 KB |
testcase_01 | AC | 94 ms
24,620 KB |
testcase_02 | AC | 44 ms
21,008 KB |
testcase_03 | AC | 613 ms
33,080 KB |
testcase_04 | AC | 87 ms
23,932 KB |
testcase_05 | AC | 958 ms
33,472 KB |
testcase_06 | AC | 1,186 ms
34,584 KB |
testcase_07 | AC | 979 ms
33,104 KB |
testcase_08 | AC | 531 ms
34,052 KB |
testcase_09 | AC | 361 ms
34,020 KB |
testcase_10 | AC | 42 ms
19,404 KB |
ソースコード
import std.conv, std.functional, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.complex, std.container, std.math, std.numeric, std.range, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } real readReal() { return readToken.to!real; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } // a b (mod m) ulong multiply(ulong a, ulong b, ulong m) in { assert(m < 1UL << 63, "multiply: m < 2^63 must hold"); assert(a < m, "multiply: a < m must hold"); assert(b < m, "multiply: b < m must hold"); } do { ulong c = 0; for (; a; a >>= 1) { if (a & 1) { c += b; if (c >= m) c -= m; } b <<= 1; if (b >= m) b -= m; } return c; } // a^e (mod m) ulong power(ulong a, ulong e, ulong m) in { assert(m < 1UL << 63, "power: m < 2^63 must hold"); assert(a < m, "power: a < m must hold"); } do { long b = 1; for (; e; e >>= 1) { if (e & 1) b = multiply(b, a, m); a = multiply(a, a, m); } return b; } // Checks if n is a prime using Miller-Rabin test bool isPrime(ulong n) in { assert(n < 1UL << 63, "isPrime: n < 2^63 must hold"); } do { import core.bitop : bsf; // http://miller-rabin.appspot.com/ enum ulong[] BASES = [2, 325, 9375, 28178, 450775, 9780504, 1795265022]; if (n <= 1 || !(n & 1)) return (n == 2); const s = bsf(n - 1); const d = (n - 1) >> s; foreach (base; BASES) { ulong a = base % n; if (a == 0) continue; a = power(a, d, n); if (a == 1 || a == n - 1) continue; bool ok = false; foreach (_; 0 .. s - 1) { a = multiply(a, a, n); if (a == n - 1) { ok = true; break; } } if (!ok) return false; } return true; } enum LIM = 10L^^18; enum SMALL = 10^^6; void main() { auto isnp = new bool[SMALL]; foreach (p; 2 .. SMALL) { if (!isnp[p]) { for (int n = 2 * p; n < SMALL; n += p) { isnp[n] = true; } } } bool[long] isPrimePower; foreach (p; 2 .. SMALL) { if (!isnp[p]) { long pk = 1; for (; pk <= LIM / p; ) { pk *= p; isPrimePower[pk] = true; } } } try { for (; ; ) { const numCases = readInt(); foreach (caseId; 0 .. numCases) { stderr.writefln("==== Case #%d ====", caseId); stderr.flush; const N = readLong(); bool ans; if (N % 2 == 0) { ans = (N >= 4); } else { for (long a = 1; (1L << a) < N; ++a) { const m = N - (1L << a); if (m in isPrimePower) { ans = true; } if (isPrime(m)) { ans = true; } long lo = 0, hi = m; for (; lo + 1 < hi; ) { const mid = (lo + hi) / 2; (BigInt(mid) * mid >= m) ? (hi = mid) : (lo = mid); } if (hi * hi == m) { if (isPrime(hi)) { ans = true; } } } } writeln(ans ? "Yes" : "No"); } } } catch (EOFException e) { } }