結果

問題 No.107 モンスター
ユーザー kuroi_13kuroi_13
提出日時 2017-03-24 11:48:28
言語 Perl
(5.38.2)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 712 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-07-06 01:32:27
合計ジャッジ時間 1,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,632 KB
testcase_01 AC 6 ms
5,632 KB
testcase_02 AC 6 ms
5,632 KB
testcase_03 AC 5 ms
5,760 KB
testcase_04 AC 5 ms
5,632 KB
testcase_05 AC 5 ms
5,632 KB
testcase_06 AC 5 ms
5,632 KB
testcase_07 AC 5 ms
5,760 KB
testcase_08 AC 6 ms
5,632 KB
testcase_09 AC 6 ms
5,632 KB
testcase_10 AC 6 ms
5,760 KB
testcase_11 AC 6 ms
5,632 KB
testcase_12 AC 6 ms
5,632 KB
testcase_13 AC 49 ms
8,576 KB
testcase_14 AC 100 ms
11,648 KB
testcase_15 AC 99 ms
11,648 KB
testcase_16 AC 6 ms
5,632 KB
testcase_17 AC 19 ms
7,168 KB
testcase_18 AC 44 ms
16,896 KB
testcase_19 AC 49 ms
17,024 KB
testcase_20 AC 64 ms
8,704 KB
testcase_21 AC 45 ms
8,704 KB
testcase_22 AC 85 ms
11,776 KB
testcase_23 AC 131 ms
17,408 KB
testcase_24 AC 84 ms
17,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my $m_num = <>;
my @mons = split ' ', <>;
my %point = (pres => 100, max => 100);

my @dp;
for(my $i = 0; $i < 1<<$m_num; $i++){
  $dp[$i] = [0, 0];
}
$dp[0] = [100, 100];

my $ni = 0;
for(my $i = 0; $i < 1<<$m_num; $i++){
  next if($dp[$i][0] < 1);
  for my $j (0..$m_num-1){
    next if(($i>>$j) % 2);

    my @np = @{$dp[$i]};
    if(0 < $mons[$j]){
      $np[0] += $mons[$j];
      $np[0] = $np[1] < $np[0] ? $np[1]: $np[0];
    }else{
      if($np[0] + $mons[$j] > 0){
        $np[0] += $mons[$j];
        $np[1] += 100;
      }else{
        $np[0] = 0;
      }
    }
    $ni = $i | 1 << $j;
    $dp[$ni] = $dp[$ni][0] < $np[0] ? \@np : $dp[$ni];
  }
}
print $dp[(1<<$m_num)-1][0];
0