結果
問題 | No.168 ものさし |
ユーザー | kuuso1 |
提出日時 | 2015-03-20 00:59:10 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,158 bytes |
コンパイル時間 | 2,661 ms |
コンパイル使用メモリ | 109,312 KB |
実行使用メモリ | 83,328 KB |
最終ジャッジ日時 | 2024-06-28 23:39:54 |
合計ジャッジ時間 | 7,136 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 32 ms
19,456 KB |
testcase_02 | AC | 33 ms
19,456 KB |
testcase_03 | AC | 32 ms
19,456 KB |
testcase_04 | AC | 32 ms
19,328 KB |
testcase_05 | AC | 32 ms
19,584 KB |
testcase_06 | WA | - |
testcase_07 | AC | 34 ms
19,328 KB |
testcase_08 | AC | 34 ms
19,328 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 34 ms
19,328 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 819 ms
66,560 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; using System.Threading.Tasks; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ long[,] Dist=new long[N,N]; Parallel.For(0,N,i=>{ Parallel.For(i+1,N,j=>{ if(i!=j){ long l=0; long r=(long)2e9; long c=(l+r)/2; while(r-l>1){ c=(l+r)/2; if(c*c>d2(P[i],P[j])){ r=c; }else{ l=c; } } while(c*c>d2(P[i],P[j]))c--; while(c*c<d2(P[i],P[j]))c++; if(c%10!=0)c+=10-c%10; Dist[i,j]=c; } }); }); long Max=0; bool[] used=new bool[N]; used[0]=true; SkewHeap<Pair2> SH=new SkewHeap<Pair2>(); for(int i=1;i<N;i++){ SH.Push(new Pair2(i,Dist[0,i])); } while(SH.Count>0){ var p=SH.Top;SH.Pop(); if(used[p.Pos])continue; Max=Math.Max(Max,p.Cost); used[p.Pos]=true; if(p.Pos==N-1)break; for(int i=0;i<N;i++){ if(!used[i]){ SH.Push(new Pair2(i,Dist[p.Pos,i])); } } } Console.WriteLine(Max); } int N; Pair[] P; public Sol(){ N=ri(); P=new Pair[N]; for(int i=0;i<N;i++){ var d=rla(); P[i]=new Pair(d[0],d[1]); } } class Pair{ public long X,Y; public Pair(long x,long y){ X=x;Y=y; } } long d2(Pair p,Pair q){ return (p.X-q.X)*(p.X-q.X)+(p.Y-q.Y)*(p.Y-q.Y); } 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 Pair2 : IComparable<Pair2> { public int Pos; public long Cost; public Pair2(int p, long c) { Pos = p; Cost = c; } public int CompareTo(Pair2 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; } } }