結果

問題 No.860 買い物
ユーザー 6soukiti296soukiti29
提出日時 2019-08-16 23:47:32
言語 Nim
(2.0.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,457 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 65,448 KB
最終ジャッジ日時 2024-07-02 15:53:02
合計ジャッジ時間 1,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
/home/judge/data/code/Main.nim(66, 33) Error: type mismatch: got 'seq[BiggestInt]' for 'map(split(readLine(stdin), {' ', '\t', '\v', '\r', '\n', '\f'}, -1),
    parseBiggestInt)' but expected 'tuple'

ソースコード

diff #

import sequtils,strutils,algorithm
type
    unionfindtree[I : static[int]] = array[I,int]

proc initUT(I : static[int]):unionfindtree[I] =
    var res : unionfindtree[I]
    for i in 0..<I:
        res[i] = i
    return res
    
proc find(U : var unionfindtree; a : int, b :int): bool=
    var
        s = a
        t = b
    while s != U[s]:
        s = U[s]
    while t != U[t]:
        t = U[t]
    var
        s2 = a
        t2 = b
        p : int
    while s2 != s:
        p = U[s2]
        U[s2] = s
        s2 = p
    while t2 != t:
        p = U[t2]
        U[t2] = t
        t2 = p
    return s == t
    
proc union(U : var  unionfindtree; a : int ; b : int)=
    if U.find(a,b):
        return
    var
        s = a
        t = b
        t2 : int
    while s != U[s]:
        s = U[s]
    while t != U[t]:
        t2 = U[t]
        U[t] = s
        t = t2
    U[t] = s
proc root(U : unionfindtree, a :int):int=
    var
        s = a
    while s != U[s]:
        s = U[s]
    return s

var
    N = stdin.readline.parseInt
    BIT = initUT(100010)
    c,d,ans : int64

type
    edge = tuple[a : int ,b : int,c : int64]

var
    edges = newSeq[edge](0)

for i in 1..N:
    (c, d) =stdin.readline.split.map(parseBiggestInt)
    if i != 1:
        edges.add((i, i - 1, d))
    edges.add((i, 0, c))
    ans += c

edges = edges.sortedByIt(it.c)
for e in edges:
    if BIT.find(e.a,e.b) == false:
        ans += e.c
        BIT.union(e.a,e.b)

echo ans

0