結果

問題 No.90 品物の並び替え
ユーザー aru aruaru aru
提出日時 2020-08-04 21:12:21
言語 Go
(1.22.1)
結果
AC  
実行時間 543 ms / 5,000 ms
コード長 2,199 bytes
コンパイル時間 12,527 ms
コンパイル使用メモリ 210,260 KB
実行使用メモリ 6,708 KB
最終ジャッジ日時 2023-10-12 22:11:09
合計ジャッジ時間 13,064 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 36 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 4 ms
4,356 KB
testcase_04 AC 5 ms
4,356 KB
testcase_05 AC 39 ms
4,348 KB
testcase_06 AC 31 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 543 ms
6,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"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() - 1
	if n < 1 {
		return false
	}
	j := n - 1
	for ; !x.Less(j, j+1); j-- {
		if j == 0 {
			return false
		}
	}
	l := n
	for !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 := 0
	for {
		m := make(map[int]bool)
		score := 0
		for _, 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)
}
0