結果

問題 No.119 旅行のツアーの問題
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-18 06:23:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-01 06:51:55
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
12,288 KB
testcase_01 AC 153 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 115 ms
12,160 KB
testcase_06 AC 167 ms
12,288 KB
testcase_07 AC 91 ms
12,288 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 93 ms
12,160 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 90 ms
12,032 KB
testcase_14 AC 133 ms
12,160 KB
testcase_15 AC 99 ms
12,160 KB
testcase_16 AC 135 ms
12,160 KB
testcase_17 AC 89 ms
12,416 KB
testcase_18 AC 91 ms
12,160 KB
testcase_19 AC 98 ms
12,032 KB
testcase_20 AC 136 ms
12,160 KB
testcase_21 AC 158 ms
12,160 KB
testcase_22 AC 175 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
l=n*4
g=(1..l).map{[0]*l}
a=0
(0...n).map{|u|
  b,c=gets.split
  a+=g[0][2+u]=b.to_i
  a+=g[2+n+u][1]=c.to_i
  g[2+u][2+n+u]=9999
}
gets.to_i.times{
  d,e=gets.split
  g[2+d.to_i][2+n+e.to_i]=9999
}
(
  q=[0]
  p=[-1]*l
  (
    u=q.shift
    l.times{|v|
      (
        p[v]=u
        q<<v
      )if p[v]<0&&g[u][v]>0
    }
  )while q.any?
  break if p[1]<0
  m=9999
  v=1
  (m=[m,g[u=p[v]][v]].min;v=u)while v>0
  a-=m
  v=1
  (g[u=p[v]][v]-=m;g[v][u]+=m;v=u)while v>0
)while !!n
p a
0