結果

問題 No.455 冬の大三角
ユーザー aimyaimy
提出日時 2017-08-14 21:34:38
言語 Haskell
(9.8.2)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 7,639 ms
コンパイル使用メモリ 180,648 KB
実行使用メモリ 11,080 KB
最終ジャッジ日時 2023-09-12 14:28:47
合計ジャッジ時間 10,619 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,096 KB
testcase_01 AC 3 ms
6,876 KB
testcase_02 AC 3 ms
7,476 KB
testcase_03 AC 2 ms
6,876 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,928 KB
testcase_06 AC 2 ms
6,856 KB
testcase_07 AC 3 ms
7,004 KB
testcase_08 AC 7 ms
10,896 KB
testcase_09 AC 3 ms
6,808 KB
testcase_10 AC 3 ms
6,880 KB
testcase_11 AC 2 ms
6,804 KB
testcase_12 AC 3 ms
6,876 KB
testcase_13 AC 3 ms
6,948 KB
testcase_14 AC 3 ms
6,860 KB
testcase_15 AC 3 ms
7,036 KB
testcase_16 AC 3 ms
6,952 KB
testcase_17 AC 3 ms
6,996 KB
testcase_18 AC 3 ms
6,988 KB
testcase_19 AC 2 ms
7,032 KB
testcase_20 AC 2 ms
7,036 KB
testcase_21 AC 2 ms
6,744 KB
testcase_22 AC 3 ms
6,924 KB
testcase_23 AC 3 ms
7,076 KB
testcase_24 AC 3 ms
7,088 KB
testcase_25 AC 2 ms
6,964 KB
testcase_26 AC 2 ms
6,992 KB
testcase_27 AC 3 ms
6,804 KB
testcase_28 AC 3 ms
6,900 KB
testcase_29 AC 6 ms
10,668 KB
testcase_30 AC 5 ms
9,712 KB
testcase_31 AC 4 ms
8,528 KB
testcase_32 AC 4 ms
8,456 KB
testcase_33 AC 6 ms
11,064 KB
testcase_34 AC 3 ms
7,132 KB
testcase_35 AC 6 ms
10,032 KB
testcase_36 AC 5 ms
9,220 KB
testcase_37 AC 4 ms
8,148 KB
testcase_38 AC 4 ms
8,056 KB
testcase_39 AC 7 ms
11,080 KB
testcase_40 AC 6 ms
9,912 KB
testcase_41 AC 5 ms
9,320 KB
testcase_42 AC 4 ms
8,888 KB
testcase_43 AC 3 ms
7,680 KB
testcase_44 AC 3 ms
7,692 KB
testcase_45 AC 6 ms
10,568 KB
testcase_46 AC 5 ms
9,456 KB
testcase_47 AC 5 ms
8,848 KB
testcase_48 AC 4 ms
8,376 KB
testcase_49 AC 3 ms
7,096 KB
testcase_50 AC 3 ms
7,044 KB
testcase_51 AC 3 ms
7,216 KB
testcase_52 AC 3 ms
7,248 KB
testcase_53 AC 3 ms
7,556 KB
testcase_54 AC 3 ms
7,196 KB
testcase_55 AC 4 ms
7,680 KB
testcase_56 AC 2 ms
7,228 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Ratio
import Data.List
import Control.Monad

(%%) n d
  | d == 0 = Nothing
  | otherwise = Just (n%d)

splitOn :: Int -> [a] -> [[a]]
splitOn n = takeWhile (not . null) . unfoldr (return . splitAt n)

main = do
  [h,w] <- map read . words <$> getLine
  space <- lines <$> getContents
  putStrLn $ unlines (triangle h w space)

triangle h w space = splitOn w $ make h w (x1,y1) (x2,y2) (x,y)
  where
    (x,y) = head [(i,j) | i<-[0..h-1], j<-[0..w-1], valid (x1,y1) (x2,y2) (i,j)]
    [(x1,y1),(x2,y2)] = map snd $ filter ((=='*') . fst) $ zip (concat space) [(i,j) | i<-[0..h-1], j<-[0..w-1]]

valid p1@(x1,y1) p2@(x2,y2) p3@(i,j) = ((x1-i)%%(y1-j) /= (x2-i)%%(y2-j)) && distinct [p1,p2,p3]

make h w p1 p2 p3 = [c | i<-[0..h-1], j<-[0..w-1], let c = if elem (i,j) [p1,p2,p3] then '*' else '-']

distinct xs = let sxs = sort xs in and $ zipWith (/=) sxs (tail sxs)
0