提出 #9339411
ソースコード 拡げる
;; -*- coding: utf-8 -*-
(eval-when (:compile-toplevel :load-toplevel :execute)
(sb-int:defconstant-eqx OPT
#+swank '(optimize (speed 3) (safety 2))
#-swank '(optimize (speed 3) (safety 0) (debug 0))
#'equal)
#+swank (ql:quickload '(:cl-debug-print :fiveam) :silent t)
#-swank (set-dispatch-macro-character
;; enclose the form with VALUES to avoid being captured by LOOP macro
#\# #\> (lambda (s c p) (declare (ignore c p)) `(values ,(read s nil nil t)))))
#+swank (cl-syntax:use-syntax cl-debug-print:debug-print-syntax)
#-swank (disable-debugger) ; for CS Academy
;; BEGIN_INSERTED_CONTENTS
(declaim (ftype (function * (values fixnum &optional)) read-fixnum))
(defun read-fixnum (&optional (in *standard-input*))
"NOTE: cannot read -2^62"
(declare #.OPT)
(macrolet ((%read-byte ()
`(the (unsigned-byte 8)
#+swank (char-code (read-char in nil #\Nul))
#-swank (sb-impl::ansi-stream-read-byte in nil #.(char-code #\Nul) nil))))
(let* ((minus nil)
(result (loop (let ((byte (%read-byte)))
(cond ((<= 48 byte 57)
(return (- byte 48)))
((zerop byte) ; #\Nul
(error "Read EOF or #\Nul."))
((= byte #.(char-code #\-))
(setf minus t)))))))
(declare ((integer 0 #.most-positive-fixnum) result))
(loop
(let* ((byte (%read-byte)))
(if (<= 48 byte 57)
(setq result (+ (- byte 48)
(* 10 (the (integer 0 #.(floor most-positive-fixnum 10))
result))))
(return (if minus (- result) result))))))))
(defmacro with-buffered-stdout (&body body)
"Buffers all outputs to *STANDARD-OUTPUT* in BODY and flushes them to
*STANDARD-OUTPUT* after BODY has been done (without error). Note that only
BASE-CHAR is allowed."
(let ((out (gensym)))
`(let ((,out (make-string-output-stream :element-type 'base-char)))
(let ((*standard-output* ,out))
,@body)
(write-string (get-output-stream-string ,out)))))
;;;
;;; Arithmetic operations with static modulus
;;;
;; FIXME: Currently MOD* and MOD+ doesn't apply MOD when the number of
;; parameters is one.
(defmacro define-mod-operations (divisor)
`(progn
(defun mod* (&rest args)
(reduce (lambda (x y) (mod (* x y) ,divisor)) args))
(sb-c:define-source-transform mod* (&rest args)
(if (null args)
1
(reduce (lambda (x y) `(mod (* ,x ,y) ,',divisor)) args)))
(defun mod+ (&rest args)
(reduce (lambda (x y) (mod (+ x y) ,divisor)) args))
(sb-c:define-source-transform mod+ (&rest args)
(if (null args)
0
(reduce (lambda (x y) `(mod (+ ,x ,y) ,',divisor)) args)))
(define-modify-macro incfmod (delta)
(lambda (x y) (mod (+ x y) ,divisor)))
(define-modify-macro decfmod (delta)
(lambda (x y) (mod (- x y) ,divisor)))
(define-modify-macro mulfmod (multiplier)
(lambda (x y) (mod (* x y) ,divisor)))))
;;;
;;; Binomial coefficient with mod
;;; build: O(n)
;;; query: O(1)
;;;
;; TODO: non-global handling
(defconstant +binom-size+ 110000)
(defconstant +binom-mod+ #.(+ (expt 10 9) 7))
(declaim ((simple-array (unsigned-byte 32) (*)) *fact* *fact-inv* *inv*))
(defparameter *fact* (make-array +binom-size+ :element-type '(unsigned-byte 32))
"table of factorials")
(defparameter *fact-inv* (make-array +binom-size+ :element-type '(unsigned-byte 32))
"table of inverses of factorials")
(defparameter *inv* (make-array +binom-size+ :element-type '(unsigned-byte 32))
"table of inverses of non-negative integers")
(defun initialize-binom ()
(declare (optimize (speed 3) (safety 0)))
(setf (aref *fact* 0) 1
(aref *fact* 1) 1
(aref *fact-inv* 0) 1
(aref *fact-inv* 1) 1
(aref *inv* 1) 1)
(loop for i from 2 below +binom-size+
do (setf (aref *fact* i) (mod (* i (aref *fact* (- i 1))) +binom-mod+)
(aref *inv* i) (- +binom-mod+
(mod (* (aref *inv* (rem +binom-mod+ i))
(floor +binom-mod+ i))
+binom-mod+))
(aref *fact-inv* i) (mod (* (aref *inv* i)
(aref *fact-inv* (- i 1)))
+binom-mod+))))
(initialize-binom)
(declaim (inline binom))
(defun binom (n k)
"Returns nCk."
(if (or (< n k) (< n 0) (< k 0))
0
(mod (* (aref *fact* n)
(mod (* (aref *fact-inv* k) (aref *fact-inv* (- n k))) +binom-mod+))
+binom-mod+)))
(defmacro define-int-types (&rest bits)
`(progn
,@(mapcar (lambda (b) `(deftype ,(intern (format nil "UINT~A" b)) () '(unsigned-byte ,b))) bits)
,@(mapcar (lambda (b) `(deftype ,(intern (format nil "INT~A" b)) () '(signed-byte ,b))) bits)))
(define-int-types 2 4 7 8 15 16 31 32 62 63 64)
(declaim (inline println))
(defun println (obj &optional (stream *standard-output*))
(let ((*read-default-float-format* 'double-float))
(prog1 (princ obj stream) (terpri stream))))
(defconstant +mod+ 1000000007)
;;;
;;; Body
;;;
(declaim (inline %sqrt))
(defun %sqrt (x)
(sqrt (the (double-float 0d0) x)))
(define-mod-operations +mod+)
(defun solve-even (n k)
(declare #.OPT
(uint31 n k))
(unless (>= (* n n) (* 8 k))
(return-from solve-even 0))
(let* ((term (* 0.5d0 (%sqrt (max 0d0 (- (* 0.25d0 (* n n)) (* 2d0 k))))))
(root1 (+ (* 0.25d0 n) term))
(root2 (- (* 0.25d0 n) term))
(iroot1 (round root1))
(iroot2 (round root2)))
(declare (double-float term))
(if (and (<= (abs (- root1 iroot1)) 1d-9)
(<= (abs (- root2 iroot2)) 1d-9))
(if (= iroot1 iroot2)
(binom (floor n 2) iroot1)
(mod* 2 (binom (floor n 2) iroot1)))
0)))
(defun solve-odd (n k)
(declare #.OPT
(uint31 n k))
(unless (>= (+ (* (- n 2) (- n 2)) (* 4 n) (* -8 k) -4) 0)
(return-from solve-odd 0))
(let* ((term (* 0.5d0 (%sqrt (max 0d0 (+ (* 0.25d0 (- n 2) (- n 2))
n
(* -2d0 k)
-1)))))
(root1 (+ (* 0.25d0 (- n 2)) term))
(root2 (- (* 0.25d0 (- n 2)) term))
(iroot1 (round root1))
(iroot2 (round root2))
(res 0))
(declare (double-float term)
(uint31 res))
(when (<= (abs (- root1 iroot1)) 1d-9)
(incf res (binom (floor n 2) iroot1)))
(when (<= (abs (- root2 iroot2)) 1d-9)
(incf res (binom (floor n 2) iroot2)))
(when (<= (abs (- root1 root2)) 1d-9)
(mulfmod res 500000004))
(mod* 2 res)))
(defun main ()
(let* ((q (read)))
(with-buffered-stdout
(dotimes (_ q)
(let ((n (read-fixnum))
(k (read-fixnum)))
(println
(if (evenp n)
(solve-even n k)
(solve-odd n k))))))))
#-swank (main)
;;;
;;; Test and benchmark
;;;
#+swank
(defun io-equal (in-string out-string &key (function #'main) (test #'equal))
"Passes IN-STRING to *STANDARD-INPUT*, executes FUNCTION, and returns true if
the string output to *STANDARD-OUTPUT* is equal to OUT-STRING."
(labels ((ensure-last-lf (s)
(if (eql (uiop:last-char s) #\Linefeed)
s
(uiop:strcat s uiop:+lf+))))
(funcall test
(ensure-last-lf out-string)
(with-output-to-string (out)
(let ((*standard-output* out))
(with-input-from-string (*standard-input* (ensure-last-lf in-string))
(funcall function)))))))
#+swank
(defun get-clipbrd ()
(with-output-to-string (out)
;; (run-program "C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe" '("get-clipboard") :output out)
(run-program "powershell.exe" '("-Command" "Get-Clipboard") :output out :search t)))
#+swank (defparameter *this-pathname* (uiop:current-lisp-file-pathname))
#+swank (defparameter *dat-pathname* (uiop:merge-pathnames* "test.dat" *this-pathname*))
#+swank
(defun run (&optional thing (out *standard-output*))
"THING := null | string | symbol | pathname
null: run #'MAIN using the text on clipboard as input.
string: run #'MAIN using the string as input.
symbol: alias of FIVEAM:RUN!.
pathname: run #'MAIN using the text file as input."
(let ((*standard-output* out))
(etypecase thing
(null
(with-input-from-string (*standard-input* (delete #\Return (get-clipbrd)))
(main)))
(string
(with-input-from-string (*standard-input* (delete #\Return thing))
(main)))
(symbol (5am:run! thing))
(pathname
(with-open-file (*standard-input* thing)
(main))))))
#+swank
(defun gen-dat ()
(uiop:with-output-file (out *dat-pathname* :if-exists :supersede)
(format out "")))
#+swank
(defun bench (&optional (out (make-broadcast-stream)))
(time (run *dat-pathname* out)))
;; To run: (5am:run! :sample)
#+swank
(it.bese.fiveam:test :sample
(it.bese.fiveam:is
(common-lisp-user::io-equal "4
3 0
3 1
3 2
3 3
"
"2
2
0
0
"))
(it.bese.fiveam:is
(common-lisp-user::io-equal "5
4 2
5 3
6 4
16 8
869 120
"
"2
4
6
0
0
")))
提出情報
| 提出日時 |
|
| 問題 |
J - ヌクレオチド |
| ユーザ |
sansaqua |
| 言語 |
Common Lisp (SBCL 1.1.14) |
| 得点 |
500 |
| コード長 |
9846 Byte |
| 結果 |
AC |
| 実行時間 |
238 ms |
| メモリ |
35944 KiB |
ジャッジ結果
| セット名 |
Sample |
Subtask1 |
| 得点 / 配点 |
0 / 0 |
500 / 500 |
| 結果 |
|
|
| セット名 |
テストケース |
| Sample |
sample_01.txt, sample_02.txt |
| Subtask1 |
sample_01.txt, sample_02.txt, sub1_01.txt, sub1_02.txt, sub1_03.txt, sub1_04.txt, sub1_05.txt, sub1_06.txt, sub1_07.txt, sub1_08.txt, sub1_09.txt |
| ケース名 |
結果 |
実行時間 |
メモリ |
| sample_01.txt |
AC |
174 ms |
32096 KiB |
| sample_02.txt |
AC |
160 ms |
31204 KiB |
| sub1_01.txt |
AC |
236 ms |
35940 KiB |
| sub1_02.txt |
AC |
237 ms |
35940 KiB |
| sub1_03.txt |
AC |
236 ms |
35944 KiB |
| sub1_04.txt |
AC |
238 ms |
35940 KiB |
| sub1_05.txt |
AC |
237 ms |
35940 KiB |
| sub1_06.txt |
AC |
160 ms |
31208 KiB |
| sub1_07.txt |
AC |
160 ms |
31204 KiB |
| sub1_08.txt |
AC |
161 ms |
31204 KiB |
| sub1_09.txt |
AC |
161 ms |
31200 KiB |