#-swank (unless (member :child-sbcl *features*) (quit :unix-status (process-exit-code (run-program *runtime-pathname* `("--control-stack-size" "128MB" "--noinform" "--disable-ldb" "--lose-on-corruption" "--end-runtime-options" "--eval" "(push :child-sbcl *features*)" "--script" ,(namestring *load-pathname*)) :output t :error t :input t)))) ;; -*- 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 #\# #\> (lambda (s c p) (declare (ignore c p)) (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 ;;; ;;; Disjoint set by Union-Find algorithm ;;; (defstruct (disjoint-set (:constructor make-disjoint-set (size &aux (data (make-array size :element-type 'fixnum :initial-element -1)))) (:conc-name ds-)) (data nil :type (simple-array fixnum (*)))) (declaim (ftype (function * (values (mod #.array-total-size-limit) &optional)) ds-root)) (defun ds-root (disjoint-set x) "Returns the root of X." (declare (optimize (speed 3)) ((mod #.array-total-size-limit) x)) (let ((data (ds-data disjoint-set))) (if (< (aref data x) 0) x (setf (aref data x) (ds-root disjoint-set (aref data x)))))) (declaim (inline ds-unite!)) (defun ds-unite! (disjoint-set x1 x2) "Destructively unites X1 and X2 and returns true iff X1 and X2 become connected for the first time." (let ((root1 (ds-root disjoint-set x1)) (root2 (ds-root disjoint-set x2))) (unless (= root1 root2) (let ((data (ds-data disjoint-set))) ;; ensure the size of root1 >= the size of root2 (when (> (aref data root1) (aref data root2)) (rotatef root1 root2)) (incf (aref data root1) (aref data root2)) (setf (aref data root2) root1))))) (declaim (inline ds-connected-p)) (defun ds-connected-p (disjoint-set x1 x2) "Returns true iff X1 and X2 have the same root." (= (ds-root disjoint-set x1) (ds-root disjoint-set x2))) (declaim (inline ds-size)) (defun ds-size (disjoint-set x) "Returns the size of the connected component to which X belongs." (- (aref (ds-data disjoint-set) (ds-root disjoint-set x)))) (declaim (ftype (function * (values fixnum &optional)) read-fixnum)) (defun read-fixnum (&optional (in *standard-input*)) (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 dbg (&rest forms) #+swank (if (= (length forms) 1) `(format *error-output* "~A => ~A~%" ',(car forms) ,(car forms)) `(format *error-output* "~A => ~A~%" ',forms `(,,@forms))) #-swank (declare (ignore forms))) (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) ;;; ;;; Lowest common ancestor of tree (or forest) by binary lifting ;;; build: O(nlog(n)) ;;; query: O(log(n)) ;;; ;; PAY ATTENTION TO THE STACK SIZE! BUILD-LCA-TABLE does DFS. (deftype lca-vertex-number () '(signed-byte 32)) (defstruct (lca-table (:constructor %make-lca-table (size &aux ;; requires 1 + log_2{size-1} (max-level (+ 1 (integer-length (- size 2)))) (depths (make-array size :element-type 'lca-vertex-number :initial-element -1)) (parents (make-array (list size max-level) :element-type 'lca-vertex-number)))) (:conc-name lca-)) (max-level nil :type (integer 0 #.most-positive-fixnum)) (depths nil :type (simple-array lca-vertex-number (*))) (parents nil :type (simple-array lca-vertex-number (* *)))) (defun make-lca-table (graph &key root (key #'identity)) "GRAPH := vector of adjacency lists ROOT := null | non-negative fixnum If ROOT is null, this function traverses each connected component of GRAPH from an arbitrarily picked vertex. Otherwise this function traverses GRAPH only from ROOT; GRAPH must be tree in the latter case." (declare (optimize (speed 3)) (vector graph) (function key) ((or null (integer 0 #.most-positive-fixnum)) root)) (let* ((size (length graph)) (lca-table (%make-lca-table size)) (depths (lca-depths lca-table)) (parents (lca-parents lca-table)) (max-level (lca-max-level lca-table))) (labels ((dfs (v prev-v depth) (declare (lca-vertex-number v prev-v)) (setf (aref depths v) depth) (setf (aref parents v 0) prev-v) (dolist (node (aref graph v)) (let ((dest (funcall key node))) (declare (lca-vertex-number dest)) (unless (= dest prev-v) (dfs dest v (+ 1 depth))))))) (if root (dfs root -1 0) (dotimes (v size) (when (= (aref depths v) -1) (dfs v -1 0)))) (dotimes (k (- max-level 1)) (dotimes (v size) (if (= -1 (aref parents v k)) (setf (aref parents v (+ k 1)) -1) (setf (aref parents v (+ k 1)) (aref parents (aref parents v k) k))))) lca-table))) (defun get-lca (u v lca-table) "Returns the lowest common ancestor of the vertices U and V." (declare (optimize (speed 3)) (lca-vertex-number u v)) (let* ((depths (lca-depths lca-table)) (parents (lca-parents lca-table)) (max-level (lca-max-level lca-table))) ;; Ensures depth[u] <= depth[v] (when (> (aref depths u) (aref depths v)) (rotatef u v)) (dotimes (k max-level) (when (logbitp k (- (aref depths v) (aref depths u))) (setf v (aref parents v k)))) (if (= u v) u (loop for k from (- max-level 1) downto 0 unless (= (aref parents u k) (aref parents v k)) do (setf u (aref parents u k) v (aref parents v k)) finally (return (aref parents u 0)))))) (declaim (inline distance-on-tree)) (defun distance-on-tree (u v lca-table) "Returns the distance of U and V." (declare (optimize (speed 3))) (let ((depths (lca-depths lca-table)) (lca (get-lca u v lca-table))) (+ (- (aref depths u) (aref depths lca)) (- (aref depths v) (aref depths lca))))) ;;; ;;; Body ;;; (defconstant +inf+ #xffffffff) (define-modify-macro minf (new-value) min) (defun main () (declare #.OPT) (let* ((n (read)) (m (read)) (q (read)) (graph (make-array n :element-type 'list :initial-element nil)) (dset (make-disjoint-set n)) (weights (make-array n :element-type 'uint31 :initial-element 0)) (sums (make-array n :element-type 'uint32 :initial-element 0)) (flows (make-array n :element-type 'uint32 :initial-element 0)) (result (make-array n :element-type 'uint32 :initial-element 0)) (base-distance 0)) (declare (uint31 n m q) (uint62 base-distance)) (dotimes (i m) (let ((u (- (read-fixnum) 1)) (v (- (read-fixnum) 1))) (push u (aref graph v)) (push v (aref graph u)) (ds-unite! dset u v))) (let ((lca (make-lca-table graph))) (dotimes (i q) (let ((a (- (read-fixnum) 1)) (b (- (read-fixnum) 1))) (if (ds-connected-p dset a b) (incf base-distance (distance-on-tree a b lca)) (progn (incf (aref weights a)) (incf (aref weights b)))))) (labels ((dfs (v parent) (declare (int32 v parent)) (let ((value 0) (flow 0)) (declare (uint31 value flow)) (dolist (child (aref graph v)) (declare (uint31 child)) (unless (= child parent) (dfs child v) (incf flow (+ (aref weights child) (aref flows child))) (incf value (+ (aref weights child) (aref sums child) (aref flows child))))) (setf (aref sums v) value (aref flows v) flow))) (dfs2 (v parent) (declare (int32 v parent)) (let ((value 0) (flow 0)) (declare (uint31 value flow)) (dolist (child (aref graph v)) (incf value (+ (aref weights child) (aref sums child) (aref flows child))) (incf flow (+ (aref weights child) (aref flows child)))) (setf (aref result v) value) (setf (aref sums v) value) (setf (aref flows v) flow)) (dolist (child (aref graph v)) (declare (uint31 child)) (unless (= child parent) (let ((current-sum (aref sums v)) (current-flow (aref flows v))) (decf (aref sums v) (+ (aref weights child) (aref flows child) (aref sums child))) (decf (aref flows v) (+ (aref weights child) (aref flows child))) (dfs2 child v) (setf (aref sums v) current-sum) (setf (aref flows v) current-flow)))))) (dotimes (v n) (when (= (ds-root dset v) v) (dfs v -1))) (dotimes (v n) (when (= (ds-root dset v) v) (dfs2 v -1))) (let ((processed (make-hash-table :test #'eq))) (dotimes (v n) (let* ((root (ds-root dset v)) (value (aref result v))) (if (gethash root processed) (minf (the uint62 (gethash root processed)) value) (setf (gethash root processed) value)))) (println (+ base-distance (loop for x of-type uint62 being each hash-value of processed sum x of-type uint62)))))))) #-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:/msys64/usr/bin/cat.exe" '("/dev/clipboard") :output out))) #+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)))