結果

問題 No.4 おもりと天秤
ユーザー MiyamonYMiyamonY
提出日時 2019-09-05 12:14:04
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 804 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 42,192 KB
最終ジャッジ日時 2024-06-11 03:57:44
合計ジャッジ時間 53,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
26,112 KB
testcase_01 AC 89 ms
26,752 KB
testcase_02 AC 187 ms
31,356 KB
testcase_03 AC 125 ms
27,648 KB
testcase_04 AC 194 ms
31,072 KB
testcase_05 TLE -
testcase_06 AC 78 ms
25,728 KB
testcase_07 TLE -
testcase_08 AC 4,089 ms
41,816 KB
testcase_09 AC 4,152 ms
42,020 KB
testcase_10 TLE -
testcase_11 AC 108 ms
27,520 KB
testcase_12 AC 80 ms
25,856 KB
testcase_13 AC 79 ms
27,160 KB
testcase_14 AC 82 ms
26,368 KB
testcase_15 AC 82 ms
25,856 KB
testcase_16 AC 116 ms
27,640 KB
testcase_17 AC 109 ms
27,520 KB
testcase_18 AC 4,731 ms
42,192 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

(use gauche.array)

(let* ((n (string->number (read-line)))
       (weights (map string->number (string-split (read-line) #\space)))
       (total (fold + 0 weights))
       (max-weight 100)
       (arr (make-array (shape 0 (+ n 1) 0 (+ (* max-weight n) 1)) #f)))
  (array-set! arr 0 0 #t)

  (let loop ((weights weights)
	     (i 1))
    (cond ((null? weights)
	   (if (or (= (mod total 2) 1)
		   (eqv? (array-ref arr n (div total 2)) #f))
	       (print "impossible")
	       (print "possible")))
	  (else
	   (for-each
	    (lambda (j)
	      (let1 pred (- j (car weights))
		    (if (and (>= pred 0) (array-ref arr (- i 1) pred))
			(array-set! arr i j #t)))
	      (if (array-ref arr (- i 1) j)
		  (array-set! arr i j #t)))
	    (iota (+ (* max-weight n) 1)))
	   (loop (cdr weights) (+ i 1))))))
0