Submission #111861


Source Code Expand

import Data.List (permutations)

main :: IO ()
main = do
  ((n:_:_):ms) <- fmap (map (map read . words) . lines) getContents
  print $ solve n $ map (\[a,b] -> (a,b)) ms

solve _ [] = 1
solve n ms = (+) 1 $ maximum $ map (flip f []) $ concatMap permutations ns
    where 
      f [] _      = 0
      f (x:xs) ys = if acqAll x ys ms then 1 + f xs (x:ys) 
                    else f xs ys
      ns = map (\x -> filter (\y -> acq x y ms) [x..n]) [1..n]

acq :: Int -> Int -> [(Int, Int)] -> Bool
acq _ _ [] = False
acq x y ((a,b):cs)
    | x == a && y == b = True
    | x == b && y == a = True
    | otherwise        = acq x y cs

acqAll :: Int -> [Int] -> [(Int, Int)] -> Bool
acqAll _ [] _  = True
acqAll x ys zs = all (\y -> acq x y zs) ys

Submission Info

Submission Time
Task D - 派閥
User hekt
Language Haskell (GHC 7.4.1)
Score 0
Code Size 765 Byte
Status TLE
Exec Time 2042 ms
Memory 3376 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 47
TLE × 27
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt, test_45.txt, test_46.txt, test_47.txt, test_48.txt, test_49.txt, test_50.txt, test_51.txt, test_52.txt, test_53.txt, test_54.txt, test_55.txt, test_56.txt, test_57.txt, test_58.txt, test_59.txt, test_60.txt, test_61.txt, test_62.txt, test_63.txt, test_64.txt, test_65.txt, test_66.txt, test_67.txt, test_68.txt, test_69.txt, test_70.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 24 ms 1432 KB
00_sample_02.txt AC 25 ms 1316 KB
00_sample_03.txt AC 25 ms 1560 KB
00_sample_04.txt AC 24 ms 1316 KB
test_01.txt AC 26 ms 1432 KB
test_02.txt AC 25 ms 1316 KB
test_03.txt AC 26 ms 1328 KB
test_04.txt AC 26 ms 1424 KB
test_05.txt AC 26 ms 1304 KB
test_06.txt AC 24 ms 1312 KB
test_07.txt AC 23 ms 1432 KB
test_08.txt AC 47 ms 1956 KB
test_09.txt AC 411 ms 3232 KB
test_10.txt AC 30 ms 1836 KB
test_11.txt AC 25 ms 1484 KB
test_12.txt TLE 2030 ms 3368 KB
test_13.txt AC 28 ms 1320 KB
test_14.txt AC 24 ms 1288 KB
test_15.txt AC 26 ms 1700 KB
test_16.txt AC 322 ms 3236 KB
test_17.txt TLE 2030 ms 3364 KB
test_18.txt AC 29 ms 1912 KB
test_19.txt TLE 2033 ms 3364 KB
test_20.txt TLE 2030 ms 3368 KB
test_21.txt AC 406 ms 3220 KB
test_22.txt TLE 2030 ms 3368 KB
test_23.txt TLE 2031 ms 3364 KB
test_24.txt TLE 2030 ms 3248 KB
test_25.txt AC 28 ms 1328 KB
test_26.txt AC 55 ms 1960 KB
test_27.txt AC 27 ms 1688 KB
test_28.txt AC 26 ms 1552 KB
test_29.txt AC 46 ms 1944 KB
test_30.txt AC 252 ms 3240 KB
test_31.txt TLE 2030 ms 3364 KB
test_32.txt AC 530 ms 3240 KB
test_33.txt TLE 2042 ms 3364 KB
test_34.txt TLE 2030 ms 3248 KB
test_35.txt TLE 2032 ms 3236 KB
test_36.txt TLE 2030 ms 3364 KB
test_37.txt AC 26 ms 1436 KB
test_38.txt TLE 2031 ms 3368 KB
test_39.txt TLE 2030 ms 3364 KB
test_40.txt AC 27 ms 1688 KB
test_41.txt TLE 2030 ms 3368 KB
test_42.txt TLE 2031 ms 3284 KB
test_43.txt AC 29 ms 1828 KB
test_44.txt TLE 2031 ms 3368 KB
test_45.txt TLE 2029 ms 3368 KB
test_46.txt TLE 2030 ms 3352 KB
test_47.txt TLE 2031 ms 3372 KB
test_48.txt TLE 2030 ms 3372 KB
test_49.txt AC 43 ms 1836 KB
test_50.txt AC 27 ms 1836 KB
test_51.txt AC 236 ms 2864 KB
test_52.txt AC 76 ms 2728 KB
test_53.txt AC 319 ms 3244 KB
test_54.txt AC 267 ms 3236 KB
test_55.txt TLE 2030 ms 3368 KB
test_56.txt AC 442 ms 3244 KB
test_57.txt TLE 2031 ms 3236 KB
test_58.txt TLE 2030 ms 3372 KB
test_59.txt TLE 2031 ms 3364 KB
test_60.txt TLE 2031 ms 3256 KB
test_61.txt TLE 2031 ms 3376 KB
test_62.txt AC 27 ms 1428 KB
test_63.txt AC 87 ms 2852 KB
test_64.txt AC 57 ms 1820 KB
test_65.txt AC 272 ms 3240 KB
test_66.txt AC 73 ms 2860 KB
test_67.txt AC 28 ms 1828 KB
test_68.txt AC 236 ms 3228 KB
test_69.txt AC 168 ms 2964 KB
test_70.txt AC 308 ms 3120 KB