結果

問題 No.390 最長の数列
ユーザー ikdikd
提出日時 2017-11-16 16:32:42
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 669 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 872 ms
コンパイル使用メモリ 105,848 KB
実行使用メモリ 7,736 KB
最終ジャッジ日時 2024-06-12 22:34:57
合計ジャッジ時間 3,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,816 KB
testcase_01 AC 16 ms
6,944 KB
testcase_02 AC 32 ms
6,944 KB
testcase_03 AC 27 ms
6,940 KB
testcase_04 AC 34 ms
6,944 KB
testcase_05 AC 45 ms
7,548 KB
testcase_06 AC 570 ms
7,556 KB
testcase_07 AC 14 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 16 ms
6,940 KB
testcase_10 AC 103 ms
7,736 KB
testcase_11 AC 113 ms
7,600 KB
testcase_12 AC 106 ms
7,540 KB
testcase_13 AC 148 ms
6,948 KB
testcase_14 AC 669 ms
7,456 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;
  import std.typecons;

  int n; rd(n);
  auto a=readln.split.to!(int[]);

  auto rec=new int[](n);
  fill(rec, 1);
  sort(a);
  size_t[int] pos;
  foreach(i, e; a) pos[e]=i;
  foreach(i, e0; a){
    for(auto e=e0*2; e<=1_000_000; e+=e0){
      if(e in pos){
        auto j=pos[e];
        rec[j]=max(rec[j], rec[i]+1);
      }
    }
  }

  writeln(reduce!(max)(rec));
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0