結果
問題 | No.210 探し物はどこですか? |
ユーザー | aru aru |
提出日時 | 2020-09-16 14:15:18 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 238 ms / 2,000 ms |
コード長 | 1,921 bytes |
コンパイル時間 | 10,216 ms |
コンパイル使用メモリ | 225,016 KB |
実行使用メモリ | 8,092 KB |
最終ジャッジ日時 | 2024-06-22 03:12:05 |
合計ジャッジ時間 | 21,250 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 161 ms
7,956 KB |
testcase_01 | AC | 185 ms
7,968 KB |
testcase_02 | AC | 195 ms
7,964 KB |
testcase_03 | AC | 219 ms
7,956 KB |
testcase_04 | AC | 209 ms
7,956 KB |
testcase_05 | AC | 230 ms
7,952 KB |
testcase_06 | AC | 238 ms
7,960 KB |
testcase_07 | AC | 233 ms
7,952 KB |
testcase_08 | AC | 168 ms
8,084 KB |
testcase_09 | AC | 170 ms
8,084 KB |
testcase_10 | AC | 171 ms
7,960 KB |
testcase_11 | AC | 192 ms
7,956 KB |
testcase_12 | AC | 189 ms
7,956 KB |
testcase_13 | AC | 204 ms
7,956 KB |
testcase_14 | AC | 224 ms
7,956 KB |
testcase_15 | AC | 216 ms
7,952 KB |
testcase_16 | AC | 213 ms
7,960 KB |
testcase_17 | AC | 223 ms
7,960 KB |
testcase_18 | AC | 180 ms
7,956 KB |
testcase_19 | AC | 184 ms
7,956 KB |
testcase_20 | AC | 186 ms
7,956 KB |
testcase_21 | AC | 184 ms
7,960 KB |
testcase_22 | AC | 182 ms
7,956 KB |
testcase_23 | AC | 213 ms
7,960 KB |
testcase_24 | AC | 225 ms
7,964 KB |
testcase_25 | AC | 224 ms
7,960 KB |
testcase_26 | AC | 225 ms
7,960 KB |
testcase_27 | AC | 225 ms
7,960 KB |
testcase_28 | AC | 224 ms
7,964 KB |
testcase_29 | AC | 224 ms
7,968 KB |
testcase_30 | AC | 222 ms
7,964 KB |
testcase_31 | AC | 227 ms
7,964 KB |
testcase_32 | AC | 220 ms
7,964 KB |
testcase_33 | AC | 225 ms
7,960 KB |
testcase_34 | AC | 224 ms
7,956 KB |
testcase_35 | AC | 222 ms
7,960 KB |
testcase_36 | AC | 218 ms
7,960 KB |
testcase_37 | AC | 219 ms
7,960 KB |
testcase_38 | AC | 220 ms
7,964 KB |
testcase_39 | AC | 221 ms
7,956 KB |
testcase_40 | AC | 221 ms
7,960 KB |
testcase_41 | AC | 222 ms
7,964 KB |
testcase_42 | AC | 220 ms
7,960 KB |
testcase_43 | AC | 84 ms
8,092 KB |
testcase_44 | AC | 93 ms
8,072 KB |
testcase_45 | AC | 210 ms
7,956 KB |
ソースコード
package main import ( "bufio" "container/heap" "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 } type pqi struct { p float64 n int } type priorityQueue []pqi func (pq priorityQueue) Len() int { return len(pq) } func (pq priorityQueue) Swap(i, j int) { pq[i], pq[j] = pq[j], pq[i] } func (pq priorityQueue) Less(i, j int) bool { return pq[i].p > pq[j].p } func (pq *priorityQueue) Push(x interface{}) { *pq = append(*pq, x.(pqi)) } func (pq *priorityQueue) Pop() interface{} { x := (*pq)[len(*pq)-1] *pq = (*pq)[0 : len(*pq)-1] return x } func main() { sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, 1000000) n := getInt() p := getInts(n) q := getInts(n) pq := priorityQueue{} for i := 0; i < n; i++ { x := float64(p[i]*q[i]) / 100000.0 heap.Push(&pq, pqi{x, i}) } ret := 0.0 for i := 0; i < 1000000; i++ { if len(pq) != 0 { r := heap.Pop(&pq).(pqi) ret += float64(i+1) * r.p x := r.p * (1 - float64(q[r.n])/100.0) heap.Push(&pq, pqi{x, r.n}) } } out(ret) }