結果

問題 No.452 横着者のビンゴゲーム
ユーザー okadukiokaduki
提出日時 2016-12-12 02:03:34
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 956 bytes
コンパイル時間 5,633 ms
コンパイル使用メモリ 180,312 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-11-29 12:27:34
合計ジャッジ時間 65,861 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
17,536 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 15 ms
14,628 KB
testcase_04 AC 4 ms
11,392 KB
testcase_05 AC 19 ms
18,176 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 4 ms
16,000 KB
testcase_08 AC 10 ms
13,184 KB
testcase_09 AC 2 ms
15,744 KB
testcase_10 AC 4 ms
13,636 KB
testcase_11 AC 8 ms
12,928 KB
testcase_12 AC 3 ms
13,636 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 81 ms
18,176 KB
testcase_18 AC 1,073 ms
14,080 KB
testcase_19 AC 275 ms
18,176 KB
testcase_20 AC 144 ms
14,756 KB
testcase_21 TLE -
testcase_22 AC 91 ms
14,628 KB
testcase_23 TLE -
testcase_24 WA -
testcase_25 AC 42 ms
7,680 KB
testcase_26 TLE -
testcase_27 AC 1,099 ms
7,936 KB
testcase_28 AC 1,253 ms
8,704 KB
testcase_29 AC 341 ms
7,936 KB
testcase_30 TLE -
testcase_31 AC 286 ms
7,936 KB
testcase_32 AC 104 ms
7,808 KB
testcase_33 AC 748 ms
8,064 KB
testcase_34 AC 827 ms
8,832 KB
testcase_35 AC 325 ms
8,064 KB
testcase_36 AC 52 ms
7,680 KB
testcase_37 AC 42 ms
7,680 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative
import Control.Monad
import qualified Data.ByteString.Char8 as B
import Data.Maybe (fromJust)
import Data.Array
import Text.Printf
import Debug.Trace
import Data.List(union)

readInts :: B.ByteString -> [Int]
readInts = map (fst . fromJust . B.readInt) . B.words

getInts :: IO [Int]
getInts = liftM readInts B.getLine

getCol arr n m x = [arr!(m,y,x) | y <- [1..n]]
getRow arr n m y = [arr!(m,y,x) | x <- [1..n]]

calc arr n m1 m2 = minimum [length (union xs ys) | xs <- [getCol arr n m1 x | x <- [1..n]]++[getRow arr n m1 y | y <- [1..n]],
                            ys <- [getCol arr n m2 x | x <- [1..n]]++[getRow arr n m2 y | y <- [1..n]]]

main = do
  [n,m] <- getInts
  arr <- array ((1,1,1),(m,n,n)) <$> concat <$>
    forM [1..m] (\k -> concat <$>
                       forM [1..n] (\i -> zip [(k,i,j) | j <- [1..n]] <$> getInts))
  let ans = minimum [calc arr n m1 m2 | m1 <- [1..m], m2 <- [m1+1..m]]
  print $ ans-1
0