結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | kuuso1 |
提出日時 | 2015-03-04 00:56:07 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 3,085 bytes |
コンパイル時間 | 1,524 ms |
コンパイル使用メモリ | 109,824 KB |
実行使用メモリ | 22,528 KB |
最終ジャッジ日時 | 2024-06-24 01:19:54 |
合計ジャッジ時間 | 2,980 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
18,048 KB |
testcase_01 | AC | 28 ms
18,304 KB |
testcase_02 | AC | 27 ms
18,176 KB |
testcase_03 | AC | 27 ms
17,920 KB |
testcase_04 | AC | 35 ms
19,712 KB |
testcase_05 | AC | 41 ms
20,736 KB |
testcase_06 | AC | 48 ms
22,400 KB |
testcase_07 | AC | 32 ms
18,688 KB |
testcase_08 | AC | 32 ms
18,944 KB |
testcase_09 | AC | 32 ms
18,560 KB |
testcase_10 | AC | 33 ms
19,200 KB |
testcase_11 | AC | 33 ms
19,072 KB |
testcase_12 | AC | 32 ms
18,944 KB |
testcase_13 | AC | 31 ms
18,560 KB |
testcase_14 | AC | 31 ms
19,072 KB |
testcase_15 | AC | 31 ms
18,944 KB |
testcase_16 | AC | 30 ms
18,688 KB |
testcase_17 | AC | 32 ms
18,944 KB |
testcase_18 | AC | 32 ms
18,816 KB |
testcase_19 | AC | 30 ms
19,072 KB |
testcase_20 | AC | 31 ms
18,688 KB |
testcase_21 | AC | 32 ms
18,560 KB |
testcase_22 | AC | 32 ms
18,688 KB |
testcase_23 | AC | 33 ms
18,944 KB |
testcase_24 | AC | 31 ms
19,072 KB |
testcase_25 | AC | 31 ms
18,688 KB |
testcase_26 | AC | 32 ms
18,688 KB |
testcase_27 | AC | 28 ms
18,048 KB |
testcase_28 | AC | 55 ms
22,528 KB |
testcase_29 | AC | 27 ms
18,176 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ int[] Tot=new int[N]; int Inf=(int)(1e9); for(int i=0;i<N;i++)Tot[i]=Inf; SkewHeap<Pair> SH =new SkewHeap<Pair>(); Tot[G]=0; SH.Push(new Pair(G,0)); bool[] used=new bool[N]; while(SH.Count>0){ Pair p = SH.Top; SH.Pop(); if(used[p.Pos])continue; used[p.Pos]=true; foreach (Pair e in E[p.Pos]) { if (Tot[e.Pos] > p.Cost + e.Cost) { Tot[e.Pos] = p.Cost + e.Cost; SH.Push(new Pair(e.Pos, Tot[e.Pos])); } } } List<int> L=new List<int>(); int now=S; while(now!=G){ L.Add(now); foreach(var v in E[now]){ if(Tot[now]==Tot[v.Pos]+v.Cost){ now=v.Pos; break; } } } L.Add(now); var AA=L.ToArray(); Console.WriteLine(String.Join(" ",AA)); } int N,M; int S,G; List<Pair>[] E; public Sol(){ var d=ria(); N=d[0];M=d[1];S=d[2];G=d[3]; E=new List<Pair>[N]; for(int i=0;i<N;i++)E[i]=new List<Pair>(); for(int i=0;i<M;i++){ var dd=ria(); E[dd[0]].Add(new Pair(dd[1],dd[2])); E[dd[1]].Add(new Pair(dd[0],dd[2])); } for(int i=0;i<N;i++){ E[i].Sort((x,y)=>x.Pos>y.Pos?1:x.Pos<y.Pos?-1:0); } } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(){return Console.ReadLine().Split(' ');} static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));} static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));} static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));} } class Pair : IComparable<Pair> { public int Pos; public int Cost; public Pair(int p, int c) { Pos = p; Cost = c; } public int CompareTo(Pair t) { //return this.Cost > t.Cost ? -1 : this.Cost < t.Cost ? 1 : 0; return this.Cost > t.Cost ? 1 : this.Cost < t.Cost ? -1 : 0; } } class SkewHeap<T> where T:IComparable<T>{ public int Count{ get{return cnt;} private set{cnt=value;} } public SkewHeap(){ root=null; this.Count=0; } public void Push(T v){ NodeSH<T> p=new NodeSH<T>(v); root=NodeSH<T>.Meld(root,p); this.Count++; } public void Pop(){ if(root==null)return; root=NodeSH<T>.Meld(root.L,root.R); this.Count--; } public T Top{ get{return root.Val;} } int cnt; NodeSH<T> root; class NodeSH<S> where S : IComparable<S> { public NodeSH<S> L, R; public S Val; public NodeSH(S v){ Val = v; L = null; R = null; } public static NodeSH<S> Meld(NodeSH<S> a, NodeSH<S> b){ if(a == null)return b; if (b == null) return a; if (a.Val.CompareTo(b.Val) > 0) swap(ref a, ref b); a.R = Meld(a.R, b); swap(ref a.L, ref a.R); return a; } static void swap<U>(ref U x, ref U y) { U t = x; x = y; y = t; } } }