結果

問題 No.390 最長の数列
ユーザー WagiHOHWagiHOH
提出日時 2016-07-10 17:34:32
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,071 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 106,608 KB
実行使用メモリ 7,816 KB
最終ジャッジ日時 2024-06-12 03:38:23
合計ジャッジ時間 4,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
5,248 KB
testcase_01 AC 11 ms
5,376 KB
testcase_02 AC 23 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 AC 49 ms
7,816 KB
testcase_06 AC 1,071 ms
7,640 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 176 ms
7,652 KB
testcase_11 AC 197 ms
7,652 KB
testcase_12 AC 178 ms
7,688 KB
testcase_13 AC 269 ms
7,128 KB
testcase_14 AC 647 ms
7,580 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.algorithm;
import std.string;
import std.conv;
import std.range;

void main()
{
    enum MAX_N = 10 ^^ 5, MAX_X = 10 ^^ 6 + 1;
    int[MAX_N] buf;
    immutable n = readln.chomp.to!int;
    readln.splitter.map!(to!int).copy(buf[]);
    auto set = buf[0..n].sort();
    int[int] cache;
    foreach_reverse (x; set) {
        cache[x] = iota(2 * x, MAX_X, x)
                    .filter!(i => set.contains(i))
                    .map!(i => cache[i])
                    .fold!max(0) + 1;
    }
    writeln(cache.values.fold!max);
}
0