結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-12-17 02:21:32
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 4,753 bytes
コンパイル時間 1,026 ms
コンパイル使用メモリ 114,328 KB
実行使用メモリ 50,452 KB
最終ジャッジ日時 2024-09-20 06:03:14
合計ジャッジ時間 6,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
26,152 KB
testcase_01 AC 27 ms
23,912 KB
testcase_02 AC 27 ms
24,128 KB
testcase_03 AC 27 ms
25,952 KB
testcase_04 AC 25 ms
23,812 KB
testcase_05 AC 25 ms
24,112 KB
testcase_06 AC 25 ms
25,996 KB
testcase_07 AC 40 ms
28,172 KB
testcase_08 AC 38 ms
30,632 KB
testcase_09 AC 272 ms
32,112 KB
testcase_10 AC 45 ms
28,460 KB
testcase_11 WA -
testcase_12 AC 62 ms
30,372 KB
testcase_13 AC 151 ms
28,900 KB
testcase_14 AC 32 ms
28,404 KB
testcase_15 AC 46 ms
30,368 KB
testcase_16 AC 103 ms
28,260 KB
testcase_17 AC 38 ms
30,068 KB
testcase_18 AC 38 ms
30,200 KB
testcase_19 AC 181 ms
31,204 KB
testcase_20 AC 30 ms
26,068 KB
testcase_21 AC 274 ms
31,828 KB
testcase_22 AC 24 ms
21,812 KB
testcase_23 AC 27 ms
24,112 KB
testcase_24 AC 24 ms
23,916 KB
testcase_25 AC 25 ms
21,944 KB
testcase_26 AC 26 ms
26,112 KB
testcase_27 AC 27 ms
24,168 KB
testcase_28 AC 34 ms
26,244 KB
testcase_29 AC 55 ms
31,092 KB
testcase_30 AC 27 ms
26,268 KB
testcase_31 AC 38 ms
28,488 KB
testcase_32 AC 26 ms
23,788 KB
testcase_33 AC 58 ms
28,912 KB
testcase_34 AC 46 ms
30,464 KB
testcase_35 AC 49 ms
26,060 KB
testcase_36 AC 47 ms
28,252 KB
testcase_37 AC 34 ms
30,388 KB
testcase_38 AC 60 ms
28,356 KB
testcase_39 AC 32 ms
26,288 KB
testcase_40 AC 27 ms
24,036 KB
testcase_41 AC 28 ms
23,984 KB
testcase_42 AC 24 ms
23,780 KB
testcase_43 AC 57 ms
30,832 KB
testcase_44 AC 46 ms
28,640 KB
testcase_45 AC 358 ms
29,808 KB
testcase_46 AC 41 ms
30,028 KB
testcase_47 AC 53 ms
30,816 KB
testcase_48 AC 310 ms
29,032 KB
testcase_49 AC 35 ms
30,280 KB
testcase_50 AC 27 ms
26,032 KB
testcase_51 AC 26 ms
23,912 KB
testcase_52 AC 38 ms
30,280 KB
testcase_53 AC 56 ms
30,280 KB
testcase_54 AC 131 ms
42,384 KB
testcase_55 AC 131 ms
42,652 KB
testcase_56 AC 129 ms
40,348 KB
testcase_57 AC 164 ms
48,412 KB
testcase_58 AC 158 ms
50,452 KB
testcase_59 AC 157 ms
46,492 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
using System.Threading;
using System.Runtime.CompilerServices;
static class Program{
	const int mod=(int)1e9+7;
	const long inf=long.MaxValue-1;
	static List<ValueTuple<int,int,int>>[] li;
	static void Main(){
		Sc sc=new Sc();
		var t=sc.I;
		var s=sc.Ia;
		int n=s[0],m=s[1];
		li=new List<ValueTuple<int,int,int>>[n+1];
		var b=new int[n+1];
		var h=new int[m][];
		var c=new long[n+1];
		for(int i=1;i<=n;i++){
			li[i]=new List<ValueTuple<int,int,int>>();
			b[i]=-1;
		}
		for(int i=0;i<m;i++){
			h[i]=sc.Ia;
			li[h[i][0]].Add(ValueTuple.Create(h[i][1],h[i][2],i));
			if(t==0){li[h[i][1]].Add(ValueTuple.Create(h[i][0],h[i][2],i));}
		}
		long ans=inf;
		for(int k = 0;k<m;k++) {
			for(int i=1;i<=n;i++){c[i]=inf;}
			var pq=new Rheap<int>(64);
			pq.Push(new Rheap<int>.Dt(0,h[k][1]));
			while(pq.cnt>0){
				var e=pq.Dequeue;
				if(e.d==h[k][0]){
					ans=Min(h[k][2]+e.n,ans);
					break;
				}
				if(b[e.d]==k){continue;}
				b[e.d]=k;
				for(int i=0;i<li[e.d].Count;i++){
					if(b[li[e.d][i].Item1]!=i&&li[e.d][i].Item3!=k&&c[li[e.d][i].Item1]>li[e.d][i].Item2+e.n){
						pq.Push(new Rheap<int>.Dt(li[e.d][i].Item2+e.n,li[e.d][i].Item1));
						c[li[e.d][i].Item1]=li[e.d][i].Item2+e.n;
					}
				}
			}
		}
		Console.WriteLine("{0}",ans==inf?-1:ans);
	}
}
public class Rheap<T>{
	public class Dt{
		public long n;
		public T d;
		public Dt(long n,T d){this.n=n;this.d=d;}
		public override string ToString()=>"d:"+d.ToString()+" n:"+n.ToString();
	}
	private const int m=65;
	private long la=0;
	private Dt[][] bf;
	private int[] h;
	public int cnt=0;
	public Rheap(int max){
		bf=new Dt[m][];
		h=new int[m];
		for(int i = 0;i<m;i++) {bf[i]=new Dt[max];}
	}
	public void Push(Dt x){
		int a=x.n!=la?Bsr(la^x.n)+1:0;
		if(h[a]==bf[a].Length){Extend(a);}
		bf[a][h[a]]=x;
		cnt++;
		h[a]++;
	}
	public Dt Peek{get{
		if(h[0]==0){
			for(int i = 1;i<m;i++) {
				if(h[i]>0){
					int p=0;
					for(int j = 1;j<h[i];j++) {
						if(bf[i][p].n>bf[i][j].n){p=j;}
					}
					la=bf[i][p].n;
					for(int j = 0;j<h[i];j++) {
						Push(bf[i][j]);
						cnt--;
					}
					h[i]=0;
					break;
				}
			}
		}
		return bf[0][h[0]-1];
	}}
	public Dt Dequeue{get{
		var e=Peek;
		h[0]--;
		cnt--;
		return e;
	}}
	private void Extend(int n){
		var nhe=new Dt[bf[n].Length<<1];
		Array.Copy(bf[n],nhe,bf[n].Length);
		bf[n]=nhe;
	}
	private int Bsr(long b){
		int n=0;
		if(b==0){return -1;}
		if((b&-4294967296)!=0){b=b&-4294967296;n+=32;}
		if((b&-281470681808896)!=0){b=b&-281470681808896;n+=16;}
		if((b&-71777214294589696)!=0){b=b&-71777214294589696;n+=8;}
		if((b&-1085102592571150096)!=0){b=b&-1085102592571150096;n+=4;}
		if((b&-3689348814741910324)!=0){b=b&-3689348814741910324;n+=2;}
		if((b&-6148914691236517206)!=0){b=b&-6148914691236517206;n+=1;}
		return n;
	}
}
public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0