結果

問題 No.286 Modulo Discount Store
ユーザー yuki2006yuki2006
提出日時 2015-07-09 20:24:54
言語 Go1.4
(1.4.2)
結果
TLE  
実行時間 -
コード長 1,400 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 34,828 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-25 00:22:17
合計ジャッジ時間 34,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 3 ms
8,484 KB
testcase_02 TLE -
testcase_03 AC 1 ms
8,488 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 1 ms
8,480 KB
testcase_06 TLE -
testcase_07 AC 1 ms
8,484 KB
testcase_08 AC 1 ms
13,632 KB
testcase_09 AC 1 ms
8,484 KB
testcase_10 TLE -
testcase_11 AC 2 ms
8,480 KB
testcase_12 AC 1 ms
13,636 KB
testcase_13 TLE -
testcase_14 AC 1 ms
13,636 KB
testcase_15 AC 1 ms
8,480 KB
testcase_16 AC 3 ms
13,636 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 158 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 TLE -
testcase_24 AC 1 ms
6,816 KB
testcase_25 AC 1,845 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 1,836 ms
6,820 KB
testcase_28 TLE -
testcase_29 AC 1 ms
6,820 KB
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 16 ms
6,820 KB
testcase_32 AC 15 ms
6,816 KB
testcase_33 AC 1 ms
6,820 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 3 ms
6,816 KB
testcase_36 AC 1 ms
6,820 KB
testcase_37 AC 1,800 ms
6,816 KB
testcase_38 AC 1 ms
6,820 KB
testcase_39 TLE -
testcase_40 AC 1 ms
6,820 KB
testcase_41 AC 1 ms
6,816 KB
testcase_42 AC 1 ms
8,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)
import (
	"bufio"
	"os"
	"strconv"
	"sort"
)

func main() {

	N := nextInt()
	var data = make([]int, N)

	for i := 0; i < N; i++ {
		data[i] = nextInt()
	}

	sort.Ints(data)


	minBuyTotal := N * 10000
	for {
		buy := 0
		priceTotal := 0
		for i := 0; i < N; i++ {
			buy+=data[i]-min(data[i], priceTotal%1000)
			priceTotal+=data[i]
		}
		minBuyTotal = min(minBuyTotal, buy)
		if !next_permutation(data) {
			break
		}
	}
	fmt.Println(minBuyTotal)


}

func next_permutation(a []int) bool {
	for i := len(a) - 2; i >= 0; i-- {
		if a[i] < a[i+1] {
			for j := len(a) - 1; j >= 0; j-- {
				if a[j] >= a[i] {
					a[i], a[j] = a[j], a[i]
					reverse(a, i+1, len(a)-(i+1))
					return true
				}
			}
		}
	}
	reverse(a, 0, len(a))

	return false
}
func reverse(a []int, start int, length int) {
	var end = start + length - 1
	for start < end {
		a[start], a[end] = a[end], a[start]
		start++
		end--
	}
}

var s = bufio.NewScanner(os.Stdin)

func min(a int, b int) int {
	if a < b {
		return a
	}
	return b
}



func next() string {
	s.Split(bufio.ScanWords)
	s.Scan()
	return s.Text()
}
func nextLine() string {
	s.Split(bufio.ScanLines)
	s.Scan()
	return s.Text()
}

func nextInt() int {
	i, e := strconv.Atoi(next())
	if e != nil {
		panic(e)
	}
	return i
}
func nextLong() int64 {
	i, e := strconv.ParseInt(next(), 10, 64)
	if e != nil {
		panic(e)
	}
	return i
}
0