結果

問題 No.390 最長の数列
ユーザー WagiHOHWagiHOH
提出日時 2016-07-10 17:29:40
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 7,812 KB
最終ジャッジ日時 2024-06-12 03:37:40
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
5,248 KB
testcase_01 AC 13 ms
5,376 KB
testcase_02 AC 26 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 26 ms
5,376 KB
testcase_05 AC 53 ms
7,696 KB
testcase_06 AC 1,304 ms
7,652 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 203 ms
7,684 KB
testcase_11 AC 220 ms
7,812 KB
testcase_12 AC 207 ms
7,808 KB
testcase_13 AC 296 ms
7,148 KB
testcase_14 AC 769 ms
7,712 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 12 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;
    int[10 ^^ 5] 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