結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー yukikurage_2019yukikurage_2019
提出日時 2019-09-12 23:05:19
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,163 bytes
コンパイル時間 13,390 ms
コンパイル使用メモリ 443,112 KB
実行使用メモリ 128,268 KB
最終ジャッジ日時 2024-07-02 17:17:35
合計ジャッジ時間 41,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,128 ms
94,052 KB
testcase_01 AC 813 ms
91,860 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 300 ms
50,672 KB
testcase_05 AC 298 ms
50,616 KB
testcase_06 AC 297 ms
50,680 KB
testcase_07 AC 297 ms
50,440 KB
testcase_08 AC 680 ms
76,484 KB
testcase_09 AC 296 ms
50,556 KB
testcase_10 AC 297 ms
50,588 KB
testcase_11 AC 296 ms
50,784 KB
testcase_12 AC 431 ms
61,272 KB
testcase_13 AC 300 ms
50,696 KB
testcase_14 AC 296 ms
50,736 KB
testcase_15 AC 301 ms
50,644 KB
testcase_16 AC 299 ms
50,676 KB
testcase_17 AC 298 ms
50,472 KB
testcase_18 AC 297 ms
50,776 KB
testcase_19 AC 295 ms
50,700 KB
testcase_20 AC 297 ms
50,672 KB
testcase_21 AC 302 ms
50,556 KB
testcase_22 AC 302 ms
50,592 KB
testcase_23 AC 300 ms
50,668 KB
testcase_24 AC 296 ms
50,680 KB
testcase_25 AC 298 ms
50,708 KB
testcase_26 AC 298 ms
50,772 KB
testcase_27 AC 297 ms
50,628 KB
testcase_28 AC 296 ms
50,648 KB
testcase_29 AC 302 ms
50,768 KB
testcase_30 AC 312 ms
50,788 KB
testcase_31 AC 299 ms
53,628 KB
testcase_32 AC 401 ms
61,128 KB
testcase_33 AC 391 ms
52,960 KB
testcase_34 AC 599 ms
81,508 KB
testcase_35 TLE -
testcase_36 AC 1,305 ms
94,588 KB
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val INF = 1000000
    val n = readLine()!!.toInt()
    val dp = Array(n + 1){INF}
    val memo = Array(n + 1){mutableListOf<Int>()}
    dp[0] = 0
    for(i in 1 until n + 1)for(j in 1 until Math.sqrt(i.toDouble()).toInt() + 1){
        if(dp[i] == dp[i - j * j] + j)memo[i].add(j)
        if(dp[i] > dp[i - j * j] + j){
            dp[i] = dp[i - j * j] + j
            memo[i] = mutableListOf<Int>(j)
        }
    }
    val dat = cal(memo,n,mutableListOf())
    var answer = "2"
    for(i in dat.indices){
        var result = ""
        var suf = "0"
        for(j in dat[i]){
            for(k in 0 until j){
                result+=suf
                suf=rev(suf)
            }
            suf=rev(suf)
        }
        if(result.compareTo(answer) < 0)answer = result
    }
    println(answer)
}
fun rev(suf:String) = if(suf=="0")"1" else "0"
fun cal(memo:Array<MutableList<Int>>,i:Int,result:MutableList<Int>):List<List<Int>>{
    if(i == 0)return listOf<List<Int>>(result.toList())
    var ret = mutableListOf<List<Int>>()
    for(j in memo[i]){
        ret.addAll(cal(memo,i - j * j,(result + j).toMutableList()))
    }
    return ret
}
0