結果
問題 | No.90 品物の並び替え |
ユーザー |
![]() |
提出日時 | 2020-08-04 21:12:21 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 532 ms / 5,000 ms |
コード長 | 2,199 bytes |
コンパイル時間 | 16,021 ms |
コンパイル使用メモリ | 238,956 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 20:24:49 |
合計ジャッジ時間 | 12,652 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 |
ソースコード
package mainimport ("bufio""fmt""os""sort""strconv")func out(x ...interface{}) {fmt.Println(x...)}var sc = bufio.NewScanner(os.Stdin)func getInt() int {sc.Scan()i, e := strconv.Atoi(sc.Text())if e != nil {panic(e)}return i}func getInts(N int) []int {ret := make([]int, N)for i := 0; i < N; i++ {ret[i] = getInt()}return ret}func getString() string {sc.Scan()return sc.Text()}// min, max, asub, absなど基本関数func max(a, b int) int {if a > b {return a}return b}func min(a, b int) int {if a < b {return a}return b}func asub(a, b int) int {if a > b {return a - b}return b - a}func abs(a int) int {if a >= 0 {return a}return -a}func lowerBound(a []int, x int) int {idx := sort.Search(len(a), func(i int) bool {return a[i] >= x})return idx}func upperBound(a []int, x int) int {idx := sort.Search(len(a), func(i int) bool {return a[i] > x})return idx}// NextPermutation generates the next permutation of the// sortable collection x in lexical order. It returns false// if the permutations are exhausted.//// Knuth, Donald (2011), "Section 7.2.1.2: Generating All Permutations",// The Art of Computer Programming, volume 4A.// ※NextPermutationは辞書順で次を返すfunc NextPermutation(x sort.Interface) bool {n := x.Len() - 1if n < 1 {return false}j := n - 1for ; !x.Less(j, j+1); j-- {if j == 0 {return false}}l := nfor !x.Less(j, l) {l--}x.Swap(j, l)for k, l := j+1, n; k < l; {x.Swap(k, l)k++l--}return true}type pair struct {n, s int}func main() {sc.Split(bufio.ScanWords)N, M := getInt(), getInt()t := make(map[int][]pair)for i := 0; i < M; i++ {a, b, s := getInt(), getInt(), getInt()t[b] = append(t[b], pair{a, s})}n := make([]int, 0)for i := 0; i < N; i++ {n = append(n, i)}ans := 0for {m := make(map[int]bool)score := 0for _, e := range n {for _, v := range t[e] {if m[v.n] == true {score += v.s}}m[e] = true}ans = max(ans, score)if NextPermutation(sort.IntSlice(n)) == false {break}}out(ans)}