結果

問題 No.497 入れ子の箱
ユーザー te-shte-sh
提出日時 2017-12-25 11:28:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 1,091 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 112,848 KB
実行使用メモリ 11,852 KB
最終ジャッジ日時 2024-06-12 23:15:31
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 56 ms
9,016 KB
testcase_04 AC 55 ms
8,628 KB
testcase_05 AC 57 ms
9,136 KB
testcase_06 AC 58 ms
10,324 KB
testcase_07 AC 56 ms
10,180 KB
testcase_08 AC 56 ms
11,532 KB
testcase_09 AC 57 ms
9,832 KB
testcase_10 AC 56 ms
9,676 KB
testcase_11 AC 60 ms
9,304 KB
testcase_12 AC 50 ms
6,944 KB
testcase_13 AC 50 ms
6,940 KB
testcase_14 AC 49 ms
7,080 KB
testcase_15 AC 47 ms
6,948 KB
testcase_16 AC 47 ms
6,944 KB
testcase_17 AC 50 ms
6,944 KB
testcase_18 AC 54 ms
10,052 KB
testcase_19 AC 54 ms
11,852 KB
testcase_20 AC 52 ms
11,096 KB
testcase_21 AC 54 ms
10,076 KB
testcase_22 AC 54 ms
10,904 KB
testcase_23 AC 17 ms
6,944 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 52 ms
9,256 KB
testcase_28 AC 50 ms
7,700 KB
testcase_29 AC 49 ms
8,888 KB
testcase_30 AC 30 ms
6,940 KB
testcase_31 AC 31 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

alias graph = Graph!int;

void main()
{
  auto n = readln.chomp.to!int;
  auto s = new int[][](n, 3);
  foreach (i; 0..n) {
    s[i] = readln.split.to!(int[]);
    s[i].sort();
  }

  auto g = new int[][](n);
  foreach (i; 0..n)
    foreach (j; 0..n)
      if (iota(3).all!(k => s[i][k] > s[j][k])) g[i] ~= j;

  auto ts = graph.topologicalSort(g);

  auto dp = new int[](n);
  dp[] = 1;

  foreach_reverse (i; ts)
    foreach (j; g[i])
      dp[i] = max(dp[i], dp[j]+1);

  writeln(dp.maxElement);
}

template Graph(Node)
{
  import std.container;

  Node[] topologicalSort(Node[][] g)
  {
    auto n = cast(Node)(g.length), h = new size_t[](n);

    foreach (u; 0..n)
      foreach (v; g[u])
        ++h[v];

    auto st = SList!Node();
    foreach (i; 0..n)
      if (h[i] == 0) st.insertFront(i);

    Node[] ans;
    while (!st.empty()) {
      auto u = st.front; st.removeFront();
      ans ~= u;
      foreach (v; g[u]) {
        --h[v];
        if (h[v] == 0) st.insertFront(v);
      }
    }

    return ans;
  }
}
0