結果

問題 No.710 チーム戦
ユーザー te-shte-sh
提出日時 2018-07-03 13:43:06
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 59 ms / 3,000 ms
コード長 822 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 103,408 KB
実行使用メモリ 43,616 KB
最終ジャッジ日時 2024-06-13 01:17:45
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 30 ms
21,632 KB
testcase_03 AC 30 ms
22,760 KB
testcase_04 AC 32 ms
23,172 KB
testcase_05 AC 28 ms
22,744 KB
testcase_06 AC 29 ms
21,852 KB
testcase_07 AC 31 ms
22,304 KB
testcase_08 AC 31 ms
23,484 KB
testcase_09 AC 31 ms
22,308 KB
testcase_10 AC 27 ms
20,868 KB
testcase_11 AC 29 ms
21,984 KB
testcase_12 AC 31 ms
23,072 KB
testcase_13 AC 30 ms
22,752 KB
testcase_14 AC 29 ms
22,776 KB
testcase_15 AC 28 ms
21,592 KB
testcase_16 AC 32 ms
23,180 KB
testcase_17 AC 27 ms
21,372 KB
testcase_18 AC 30 ms
22,336 KB
testcase_19 AC 31 ms
23,104 KB
testcase_20 AC 28 ms
22,264 KB
testcase_21 AC 33 ms
22,696 KB
testcase_22 AC 59 ms
43,616 KB
testcase_23 AC 2 ms
6,948 KB
testcase_24 AC 56 ms
40,064 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;

auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);}
void readC(T...)(size_t n,ref T t){foreach(ref v;t)v=new typeof(v)(n);foreach(i;0..n){auto r=rdsp;foreach(ref v;t)pick(r,v[i]);}}

void main()
{
  int n; readV(n);
  int[] a, b; readC(n, a, b);

  auto sa = a.sum, dp = new int[][](n+1, sa+1);
  foreach (i; 0..n+1) dp[i][] = 10^^6;
  dp[0][0] = 0;

  foreach (i; 0..n)
    foreach (t; 0..sa+1) {
      dp[i+1][t] = dp[i][t]+b[i];
      if (t >= a[i])
        dp[i+1][t] = min(dp[i+1][t], dp[i][t-a[i]]);
    }

  auto r = 10^^6;
  foreach (t; 0..sa+1)
    r = min(r, max(t, dp[n][t]));

  writeln(r);
}
0