結果
| 問題 |
No.792 真理関数をつくろう
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-12 11:47:40 |
| 言語 | Common Lisp (sbcl 2.5.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,112 bytes |
| コンパイル時間 | 1,161 ms |
| コンパイル使用メモリ | 41,720 KB |
| 実行使用メモリ | 35,528 KB |
| 最終ジャッジ日時 | 2024-12-31 13:35:46 |
| 合計ジャッジ時間 | 2,693 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 4 |
| other | AC * 8 WA * 14 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 31 DEC 2024 01:35:42 PM): ; file: /home/judge/data/code/Main.lisp ; in: DEFUN SOLVE-LINE ; (DEFUN SOLVE-LINE (N S) ; (IF (CHAR= (CHAR S (- # 1)) #\0) ; NIL ; (SPLIT-TO-FUN-CHARS-BY-SPACE (SUBSEQ S 0 (- # 1)) 0 ; #'CHAR-BOOL-TO-P-STR))) ; --> SB-IMPL::%DEFUN SB-IMPL::%DEFUN SB-INT:NAMED-LAMBDA ; ==> ; #'(SB-INT:NAMED-LAMBDA SOLVE-LINE ; (N S) ; (DECLARE (SB-C::TOP-LEVEL-FORM)) ; (BLOCK SOLVE-LINE ; (IF (CHAR= (CHAR S #) #\0) ; NIL ; (SPLIT-TO-FUN-CHARS-BY-SPACE (SUBSEQ S 0 #) 0 ; #'CHAR-BOOL-TO-P-STR)))) ; ; caught STYLE-WARNING: ; The variable N is defined but never used. ; ; compilation unit finished ; caught 1 STYLE-WARNING condition ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.171
ソースコード
(defun split (string &key (delimiterp #'delimiterp))
(loop :for beg = (position-if-not delimiterp string)
:then (position-if-not delimiterp string :start (1+ end))
:for end = (and beg (position-if delimiterp string :start beg))
:when beg :collect (subseq string beg end)
:while end))
(defun delimiterp (c) (or (char= c #\Space) (char= c #\,)))
(defun split-to-chars-by-space (str num &optional (result ()))
(if (< num (length str))
(if (char= (char str num) #\Space)
(split-to-chars-by-space str (+ 1 num) result)
(split-to-chars-by-space str (+ 1 num) (cons (char str num) result)))
result))
; (split-to-fun-chars-by-space "1 0 1 1 0" 0 #'char-bool-to-p-str)
; -> ("¬P_5" "P_4" "P_3" "¬P_2" "P_1")
(defun split-to-fun-chars-by-space (str num f &optional (result ()))
(if (< num (length str))
(if (char= (char str num) #\Space)
(split-to-fun-chars-by-space str (+ 1 num) f result)
(split-to-fun-chars-by-space str (+ 1 num) f (cons (funcall f (+ 1 (length result)) (char str num)) result)))
result))
; (char-bool-to-p-str 1 #\0) -> ¬P_1
; (char-bool-to-p-str 2 #\1) -> P_2
(defun char-bool-to-p-str (num c)
(if (char= #\0 c) (format nil "¬P_~A" num) (format nil "P_~A" num)))
(defun solve-line (n s)
(if (char= (char s (- (length s) 1)) #\0)
nil
(split-to-fun-chars-by-space (subseq s 0 (- (length s) 1)) 0 #'char-bool-to-p-str)))
(defun solve-lines (n limit &optional (input ()))
(if (= 0 limit) input
(solve-lines n (- limit 1) (cons (solve-line n (read-line)) input))))
(defun output-lines (lines &optional (sep nil))
(if (= (length lines) 0) nil
(if (car lines) (progn (if sep (format t "~A" sep))
(format t "(~{~A~^∧~})" (reverse (car lines)))
(output-lines (cdr lines) "∨"))
(output-lines (cdr lines) "∨"))))
(let* ((n (parse-integer (read-line)))
(m (solve-lines n (expt 2 n))))
(format t "A=")
(output-lines (reverse m))
(format t "~%"))