結果

問題 No.792 真理関数をつくろう
ユーザー iwotiwot
提出日時 2020-09-12 12:07:43
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 2,332 bytes
コンパイル時間 1,136 ms
コンパイル使用メモリ 35,920 KB
実行使用メモリ 28,160 KB
最終ジャッジ日時 2024-06-10 05:49:21
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
22,528 KB
testcase_01 AC 8 ms
22,784 KB
testcase_02 AC 7 ms
22,528 KB
testcase_03 AC 11 ms
23,424 KB
testcase_04 AC 7 ms
22,272 KB
testcase_05 AC 11 ms
23,424 KB
testcase_06 AC 24 ms
25,600 KB
testcase_07 AC 8 ms
22,656 KB
testcase_08 AC 7 ms
22,528 KB
testcase_09 AC 8 ms
22,528 KB
testcase_10 AC 8 ms
22,528 KB
testcase_11 AC 8 ms
22,528 KB
testcase_12 AC 8 ms
22,528 KB
testcase_13 AC 8 ms
22,528 KB
testcase_14 AC 7 ms
22,400 KB
testcase_15 AC 8 ms
22,528 KB
testcase_16 AC 15 ms
23,936 KB
testcase_17 AC 7 ms
22,528 KB
testcase_18 AC 7 ms
22,400 KB
testcase_19 AC 7 ms
22,528 KB
testcase_20 AC 10 ms
23,424 KB
testcase_21 AC 44 ms
28,160 KB
testcase_22 AC 8 ms
22,528 KB
testcase_23 AC 7 ms
22,272 KB
testcase_24 AC 7 ms
22,272 KB
testcase_25 AC 8 ms
22,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 10 JUN 2024 05:49:19 AM):

; 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.123

ソースコード

diff #

(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 (result ()))
    (if (= 0 limit) result
        (let ((solved (solve-line n (read-line))))
            (solve-lines n (- limit 1) (if solved (cons solved result) result)))))

(defun output-lines (lines &optional (output-count 0))
    (if (= (length lines) 0) nil
        (if (car lines) (progn (if (> output-count 0) (format t "∨"))
                               (format t "(~{~A~^∧~})" (reverse (car lines)))
                               (output-lines (cdr lines) (+ output-count 1)))
            (output-lines (cdr lines) output-count))))

(let* ((n (parse-integer (read-line)))
       (m (solve-lines n (expt 2 n))))
    (format t "A=")
    (if (not m)
        (format t "⊥")
        (if (= (length m) (expt 2 n))
            (format t "⊤")
            (output-lines (reverse m))))
    
    (format t "~%"))
0