結果

問題 No.1373 Directed Operations
ユーザー linuxmetellinuxmetel
提出日時 2021-02-05 22:08:08
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 33,520 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-07-02 12:36:21
合計ジャッジ時間 4,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,888 KB
testcase_01 AC 9 ms
21,888 KB
testcase_02 AC 196 ms
27,648 KB
testcase_03 AC 38 ms
26,624 KB
testcase_04 AC 68 ms
26,624 KB
testcase_05 AC 9 ms
21,760 KB
testcase_06 AC 256 ms
27,392 KB
testcase_07 AC 14 ms
22,016 KB
testcase_08 AC 33 ms
22,528 KB
testcase_09 AC 114 ms
27,520 KB
testcase_10 AC 95 ms
26,496 KB
testcase_11 AC 29 ms
23,296 KB
testcase_12 AC 89 ms
25,856 KB
testcase_13 AC 18 ms
22,656 KB
testcase_14 AC 262 ms
27,520 KB
testcase_15 AC 227 ms
26,624 KB
testcase_16 AC 262 ms
27,392 KB
testcase_17 AC 150 ms
26,112 KB
testcase_18 AC 90 ms
24,448 KB
testcase_19 AC 103 ms
24,064 KB
testcase_20 AC 141 ms
25,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 JUL 2024 12:36:16 PM):

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

ソースコード

diff #

(defvar n (read))

(defparameter a (sort (apply #'vector (cons -100000000 1) (loop for i from 1 to (1- n)
                                                                collect (cons (read) i)))
                             #'(lambda (x y) (< (car x) (car y)))))

(defvar f nil)

(defparameter ans (make-array n))

(loop for i from 1 to (1- n)
      until f
      do (if (<= (car (aref a i)) i)
             (setf (aref ans (cdr (aref a i))) (1+ (- i (car (aref a i)))))
             (setq f t)))

(if f
    (progn (princ "NO")
           (fresh-line))
    (progn (princ "YES")
           (fresh-line)
           (loop for i from 1 to (1- n)
                 do (princ (aref ans i))
                    (fresh-line))))
;(princ a)
0