結果

問題 No.437 cwwゲーム
ユーザー kuroi_13kuroi_13
提出日時 2017-03-24 14:57:12
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-07-06 01:49:51
合計ジャッジ時間 7,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,760 KB
testcase_01 AC 5 ms
5,632 KB
testcase_02 AC 70 ms
6,272 KB
testcase_03 AC 6 ms
5,888 KB
testcase_04 AC 6 ms
5,760 KB
testcase_05 AC 371 ms
7,552 KB
testcase_06 AC 384 ms
7,552 KB
testcase_07 AC 386 ms
7,680 KB
testcase_08 AC 375 ms
7,552 KB
testcase_09 AC 390 ms
7,808 KB
testcase_10 AC 390 ms
7,808 KB
testcase_11 AC 350 ms
7,168 KB
testcase_12 AC 898 ms
8,960 KB
testcase_13 AC 158 ms
6,784 KB
testcase_14 AC 65 ms
6,400 KB
testcase_15 AC 394 ms
7,680 KB
testcase_16 AC 381 ms
7,552 KB
testcase_17 AC 65 ms
6,144 KB
testcase_18 AC 64 ms
6,272 KB
testcase_19 WA -
testcase_20 AC 9 ms
5,888 KB
testcase_21 AC 8 ms
5,760 KB
testcase_22 AC 8 ms
5,888 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 158 ms
6,656 KB
testcase_27 AC 6 ms
5,632 KB
testcase_28 AC 9 ms
5,760 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 6 ms
5,888 KB
testcase_32 AC 5 ms
5,760 KB
testcase_33 AC 67 ms
6,272 KB
testcase_34 AC 6 ms
5,888 KB
testcase_35 WA -
testcase_36 AC 6 ms
5,888 KB
testcase_37 AC 6 ms
5,760 KB
testcase_38 AC 7 ms
5,760 KB
testcase_39 AC 5 ms
5,760 KB
testcase_40 WA -
testcase_41 AC 65 ms
6,144 KB
testcase_42 AC 65 ms
6,272 KB
testcase_43 AC 76 ms
6,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my @nums = split '', <>;
my $n = $#nums+1;

my @dp;
for my $i (0..(1<<$n)-1){
  $dp[$i] = [0, $n];
}

my(@nd, $val, @pos);
my @ans = (0);
for my $d (0..(1<<$n)-1){
  next if($dp[$d][1] < 3);

  for my $i (0..$n-1){
    next if(($d>>$i) % 2);
    $nd[0] = $d | 1<<$i;
    $dp[$nd[0]][1] = $dp[$d][1]-1;
    if($i < $n-1-1){
      for my $j ($i+1..$n-1){
        next if(($nd[0]>>$j) % 2);
        $nd[1] = $nd[0] | 1<<$j;
        $dp[$nd[1]][1] = $dp[$nd[0]][1]-1;
        if($j < $n-1){
          for my $k ($j+1..$n-1){
          next if(($nd[1]>>$k) % 2);
            $nd[2] = $nd[1] | 1<<$k;
            $dp[$nd[2]][1] = $dp[$nd[1]][1]-1;
            @pos = map {$n-1 - $_} ($i, $j, $k);
            if(0 < $nums[$pos[2]] and $nums[$pos[2]] != $nums[$pos[1]] and $nums[$pos[1]] == $nums[$pos[0]]){
              $val = $nums[$pos[2]].$nums[$pos[1]].$nums[$pos[0]] + $dp[$d][0];
              if($dp[$nd[2]][0] < $val){
                $dp[$nd[2]][0] = $val;
                push @ans, $val;
              }
            }
          }
        }
      }
    }
  }
}

print+(sort {$b <=> $a} @ans)[0];
0