結果
問題 | No.308 素数は通れません |
ユーザー | yosupot |
提出日時 | 2015-12-01 23:04:20 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,324 bytes |
コンパイル時間 | 12,408 ms |
コンパイル使用メモリ | 223,256 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2024-10-10 20:17:36 |
合計ジャッジ時間 | 15,036 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,824 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 1 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 1 ms
6,820 KB |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 1 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | AC | 1 ms
6,820 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 1 ms
6,816 KB |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 1 ms
6,820 KB |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | AC | 1 ms
6,820 KB |
testcase_34 | AC | 1 ms
6,816 KB |
testcase_35 | AC | 1 ms
6,816 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,816 KB |
testcase_38 | AC | 2 ms
6,816 KB |
testcase_39 | AC | 2 ms
6,820 KB |
testcase_40 | AC | 2 ms
6,816 KB |
testcase_41 | AC | 2 ms
6,820 KB |
testcase_42 | AC | 2 ms
6,816 KB |
testcase_43 | AC | 2 ms
6,816 KB |
testcase_44 | AC | 2 ms
6,820 KB |
testcase_45 | AC | 2 ms
6,816 KB |
testcase_46 | AC | 2 ms
6,820 KB |
testcase_47 | AC | 3 ms
6,816 KB |
testcase_48 | AC | 3 ms
6,820 KB |
testcase_49 | AC | 4 ms
6,820 KB |
testcase_50 | AC | 4 ms
6,820 KB |
testcase_51 | AC | 4 ms
6,820 KB |
testcase_52 | AC | 6 ms
7,848 KB |
testcase_53 | AC | 6 ms
7,836 KB |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | RE | - |
testcase_82 | RE | - |
testcase_83 | RE | - |
testcase_84 | RE | - |
testcase_85 | RE | - |
testcase_86 | RE | - |
testcase_87 | RE | - |
testcase_88 | RE | - |
testcase_89 | RE | - |
testcase_90 | RE | - |
testcase_91 | RE | - |
testcase_92 | RE | - |
testcase_93 | RE | - |
testcase_94 | RE | - |
testcase_95 | RE | - |
testcase_96 | RE | - |
testcase_97 | RE | - |
testcase_98 | RE | - |
testcase_99 | RE | - |
testcase_100 | RE | - |
testcase_101 | RE | - |
testcase_102 | RE | - |
testcase_103 | RE | - |
testcase_104 | RE | - |
testcase_105 | RE | - |
testcase_106 | RE | - |
ソースコード
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 { 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++ { const B = 10000 { uf := MakeUF(B + 1) for j := 1; j <= B; 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, B/i*i) { continue } } { 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(9000)) == -1 { fmt.Println(solve1(int(b.Int64()))) } else { fmt.Println(solve2(b)) } }