結果

問題 No.345 最小チワワ問題
ユーザー Common LispCommon Lisp
提出日時 2024-10-08 22:32:03
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,769 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 32,964 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-10-08 22:32:05
合計ジャッジ時間 1,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
21,760 KB
testcase_01 AC 10 ms
21,760 KB
testcase_02 AC 9 ms
21,632 KB
testcase_03 AC 9 ms
21,632 KB
testcase_04 AC 10 ms
21,632 KB
testcase_05 AC 9 ms
21,632 KB
testcase_06 AC 11 ms
21,760 KB
testcase_07 AC 10 ms
21,760 KB
testcase_08 AC 10 ms
21,632 KB
testcase_09 AC 10 ms
21,632 KB
testcase_10 AC 10 ms
21,632 KB
testcase_11 AC 10 ms
21,504 KB
testcase_12 AC 9 ms
21,632 KB
testcase_13 AC 10 ms
21,632 KB
testcase_14 AC 9 ms
21,632 KB
testcase_15 AC 10 ms
21,760 KB
testcase_16 AC 10 ms
21,632 KB
testcase_17 AC 10 ms
21,632 KB
testcase_18 AC 10 ms
21,760 KB
testcase_19 AC 10 ms
21,760 KB
testcase_20 AC 10 ms
21,760 KB
testcase_21 AC 10 ms
21,504 KB
testcase_22 AC 10 ms
21,632 KB
testcase_23 AC 10 ms
21,760 KB
testcase_24 AC 10 ms
21,632 KB
testcase_25 AC 9 ms
21,632 KB
testcase_26 AC 9 ms
21,504 KB
testcase_27 AC 9 ms
21,632 KB
testcase_28 AC 9 ms
21,760 KB
testcase_29 AC 9 ms
21,632 KB
testcase_30 AC 10 ms
21,760 KB
testcase_31 AC 9 ms
21,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 OCT 2024 10:32:03 PM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.006

ソースコード

diff #

; 【解1】
; c を発見した次の位置から w を探し出し、さらにその次の位置から w を探す
; ans として大きな数を設定しておき、小さい順が見つかれば更新する
; 見つからなければ -1 見つかれば ans を出力する
; (defun main ()
;   (let* ((s (read-line))
;          (slen (length s))
;          (ans most-positive-fixnum))
;     (loop for i below (- slen 2)
;           do (loop for j from (1+ i) below (1- slen)
;                    do (loop for k from (1+ j) below slen
;                             do (when (and (char= (elt s i) #\c) (char= (elt s j) #\w) (char= (elt s k) #\w))
;                                      (setq ans (min ans (- (1+ k) i)))))))
;     (princ (if (= ans most-positive-fixnum)
;                -1
;                ans))
;     (terpri)))
; (main)

;【解2】
; s の文字数を slen とする
; 文字列のインデックスは 0 ... slen-1 とする
; cww の真ん中の w を中心に考える
; s[1] ~ s[slen-2] まで w が見つからなければ -1 を出力する (よくても cw しか作れない)
; あればその位置を i として、 i-1 から 0 まで c を後ろから
; i+1 から slen-1 まで w を前からそれぞれ探索する
; どちらも nil ではないときそれを更新する
(defun main ()
  (let* ((s (read-line))
         (slen (length s))
         (ans most-positive-fixnum))
    (loop for i from 1 below (1- slen)
          when (char= #\w (elt s i))
          do (let ((l (position #\c s :end i :from-end t))
                   (r (position #\w s :start (1+ i) )))
               (when (and l r)
                     (setf ans (min ans (- (1+ r) l))))))
    (princ (if (= ans most-positive-fixnum) -1 ans))
    (terpri)))
(main)
0