結果
問題 | No.43 野球の試合 |
ユーザー | バカらっく |
提出日時 | 2019-09-08 01:52:21 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,654 bytes |
コンパイル時間 | 16,543 ms |
コンパイル使用メモリ | 451,756 KB |
実行使用メモリ | 60,060 KB |
最終ジャッジ日時 | 2024-06-27 14:50:22 |
合計ジャッジ時間 | 21,167 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 326 ms
54,184 KB |
testcase_01 | AC | 334 ms
54,256 KB |
testcase_02 | AC | 333 ms
54,364 KB |
testcase_03 | AC | 332 ms
54,200 KB |
testcase_04 | AC | 337 ms
54,260 KB |
testcase_05 | AC | 331 ms
54,176 KB |
testcase_06 | AC | 332 ms
54,136 KB |
testcase_07 | AC | 336 ms
54,216 KB |
testcase_08 | AC | 337 ms
54,104 KB |
testcase_09 | AC | 332 ms
54,160 KB |
testcase_10 | WA | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^ Main.kt:22:68: warning: unnecessary non-null assertion (!!) on a non-null receiver of type List<Int> val w = target.sortedBy { taisen[it].count { it == 'o' } }!!.first() ^
ソースコード
import java.util.* fun main(arr:Array<String>) { val teamCount = readLine()!!.toInt() val taisen = (1..teamCount).map { readLine()!!.map { it }.toTypedArray() }.toTypedArray() taisen[0].indices.forEach { if(it > 0) { if(taisen[0][it] == '-') { taisen[0][it] = 'o' taisen[it][0] = 'x' } } } val queue = PriorityQueue<Int>(kotlin.Comparator { a, b -> taisen[b].count { it == 'o' }.compareTo(taisen[a].count{ it == 'o'}) }) queue.addAll(1..(teamCount-1)) while (queue.isNotEmpty()) { val l = queue.poll() val target = (1..teamCount - 1).filter { taisen[l][it] == '-' } if(target.isEmpty()) { continue } val w = target.sortedBy { taisen[it].count { it == 'o' } }!!.first() taisen[l][w] = 'x' taisen[w][l] = 'o' queue.add(l) } val ans = taisen.map { it.count { it == 'o' } }.distinct().sortedDescending().indexOf(taisen[0].count { it == 'o' }) + 1 println(ans) } val dic = mutableMapOf<Int, MutableMap<Long, Long>>() val coins = (1..9).map { 111111 * it }.reversed().toTypedArray() fun getAns(idx:Int, target :Long):Long { if(target < coins.last() ) { return 1 } if(idx > coins.lastIndex) { return 1 } if(!dic.containsKey(idx)) { dic[idx] = mutableMapOf() } dic[idx]!![target]?.let { return it } var ans = 0.toLong() for(i in 0..target) { if(i*coins[idx] > target) { break } ans += getAns(idx + 1, target - i*coins[idx]) } dic[idx]!![target] = ans return ans }