結果
問題 | No.308 素数は通れません |
ユーザー | yosupot |
提出日時 | 2015-12-01 23:02:20 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,342 bytes |
コンパイル時間 | 12,836 ms |
コンパイル使用メモリ | 233,904 KB |
実行使用メモリ | 8,392 KB |
最終ジャッジ日時 | 2024-10-10 20:17:20 |
合計ジャッジ時間 | 17,569 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | AC | 3 ms
6,816 KB |
testcase_57 | AC | 2 ms
6,820 KB |
testcase_58 | AC | 12 ms
6,820 KB |
testcase_59 | WA | - |
testcase_60 | AC | 17 ms
6,820 KB |
testcase_61 | AC | 67 ms
8,000 KB |
testcase_62 | WA | - |
testcase_63 | AC | 36 ms
6,816 KB |
testcase_64 | AC | 36 ms
6,820 KB |
testcase_65 | AC | 38 ms
6,816 KB |
testcase_66 | AC | 110 ms
7,996 KB |
testcase_67 | AC | 40 ms
6,816 KB |
testcase_68 | AC | 77 ms
7,996 KB |
testcase_69 | AC | 72 ms
8,140 KB |
testcase_70 | AC | 76 ms
8,016 KB |
testcase_71 | AC | 102 ms
8,272 KB |
testcase_72 | AC | 45 ms
8,012 KB |
testcase_73 | AC | 70 ms
8,136 KB |
testcase_74 | AC | 24 ms
7,884 KB |
testcase_75 | AC | 83 ms
8,268 KB |
testcase_76 | WA | - |
testcase_77 | AC | 3 ms
6,820 KB |
testcase_78 | AC | 14 ms
6,816 KB |
testcase_79 | AC | 60 ms
7,992 KB |
testcase_80 | WA | - |
testcase_81 | WA | - |
testcase_82 | AC | 19 ms
6,816 KB |
testcase_83 | AC | 68 ms
7,996 KB |
testcase_84 | WA | - |
testcase_85 | AC | 126 ms
8,120 KB |
testcase_86 | WA | - |
testcase_87 | WA | - |
testcase_88 | AC | 144 ms
8,116 KB |
testcase_89 | AC | 37 ms
6,816 KB |
testcase_90 | WA | - |
testcase_91 | AC | 42 ms
7,880 KB |
testcase_92 | AC | 48 ms
8,012 KB |
testcase_93 | AC | 128 ms
8,392 KB |
testcase_94 | AC | 47 ms
8,012 KB |
testcase_95 | AC | 150 ms
8,268 KB |
testcase_96 | AC | 25 ms
6,820 KB |
testcase_97 | AC | 45 ms
8,012 KB |
testcase_98 | AC | 65 ms
8,140 KB |
testcase_99 | AC | 47 ms
6,816 KB |
testcase_100 | AC | 34 ms
8,012 KB |
testcase_101 | AC | 86 ms
8,272 KB |
testcase_102 | AC | 25 ms
7,888 KB |
testcase_103 | AC | 15 ms
6,820 KB |
testcase_104 | AC | 89 ms
8,268 KB |
testcase_105 | AC | 90 ms
8,272 KB |
testcase_106 | WA | - |
ソースコード
package main import ( "fmt" "math/big" "os" ) type UnionFind struct { n int ig []int gi [][]int } func MakeUF(n int) *UnionFind { uf := new(UnionFind) uf.n = n uf.ig = make([]int, n) uf.gi = make([][]int, n) for i := 0; i < n; i++ { uf.ig[i] = i uf.gi[i] = []int{i} } return uf } func (uf *UnionFind) merge(a, b int) { a = uf.ig[a] b = uf.ig[b] if a == b { return } if len(uf.gi[a]) < len(uf.gi[b]) { tmp := a a = b b = tmp } for _, c := range uf.gi[b] { uf.ig[c] = a } uf.gi[a] = append(uf.gi[a], uf.gi[b]...) } func (uf *UnionFind) same(a, b int) bool { return uf.ig[a] == uf.ig[b] } var pr [10000]bool func init() { for i := 2; i < 10000; i++ { pr[i] = true } for i := 2; i < 10000; i++ { if pr[i] == false { continue } for j := 2 * i; j < 10000; j += i { pr[j] = false } } } func solve1(n int) int { os.Exit(1) for i := 2; i <= n; i++ { uf := MakeUF(n + 1) for j := 1; j <= n; j++ { if j%i != 1 { if !pr[j] && !pr[j-1] { uf.merge(j, j-1) } } if i < j { if !pr[j] && !pr[j-i] { uf.merge(j, j-i) } } } if uf.same(1, n) { return i } } os.Exit(1) return -1 } func solve2(n *big.Int) int { for i := 2; i < 1000; i++ { { uf := MakeUF(1001) for j := 1; j <= 1000; j++ { if j%i != 1 { if !pr[j] && !pr[j-1] { uf.merge(j, j-1) } } if i < j { if !pr[j] && !pr[j-i] { uf.merge(j, j-i) } } } if !uf.same(1, 1000/i*i) { continue } } { const B = 3000 uf := MakeUF(B + 1) ii := big.NewInt(int64(i)) bpr := make([]bool, B+1) for jj := 0; jj <= B; jj++ { j := n j.Sub(j, big.NewInt(int64(B-jj))) bpr[jj] = j.ProbablyPrime(100) } for jj := 0; jj <= B; jj++ { j := n j.Sub(j, big.NewInt(int64(B-jj))) if k := j; jj > 0 && k.Mod(k, ii).Cmp(big.NewInt(1)) != 0 { if !bpr[jj] && !bpr[jj-1] { uf.merge(jj, jj-1) } } if i <= jj { if !bpr[jj] && !bpr[jj-1] { uf.merge(jj, jj-i) } } } if nn := n; uf.same(B-int(nn.Mod(nn, big.NewInt(int64(i))).Int64()), B) { return i } } } os.Exit(1) return -1 } func main() { b := new(big.Int) fmt.Scan(b) if b.Cmp(big.NewInt(10000)) == -1 { fmt.Println(solve1(int(b.Int64()))) } else { fmt.Println(solve2(b)) } }