結果

問題 No.5020 Averaging
ユーザー ID 21712ID 21712
提出日時 2024-10-21 14:36:50
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 12,262 ms
コンパイル使用メモリ 222,212 KB
実行使用メモリ 6,824 KB
スコア 9,342,083
最終ジャッジ日時 2024-10-21 14:37:05
合計ジャッジ時間 13,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 7 ms
6,820 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 7 ms
6,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 7 ms
6,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 7 ms
6,816 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 7 ms
6,824 KB
testcase_16 WA -
testcase_17 AC 7 ms
6,820 KB
testcase_18 AC 6 ms
6,820 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 7 ms
6,820 KB
testcase_22 AC 16 ms
6,816 KB
testcase_23 AC 6 ms
6,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 7 ms
6,816 KB
testcase_28 AC 7 ms
6,816 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 6 ms
6,820 KB
testcase_37 WA -
testcase_38 AC 6 ms
6,816 KB
testcase_39 AC 7 ms
6,824 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 6 ms
6,820 KB
testcase_43 AC 7 ms
6,824 KB
testcase_44 AC 7 ms
6,816 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import "math/rand"

const X=5e17

func abs(a int64) int64 {
	if a<0 {
		return -a
	}
	return a
}

func max(a,b int64) int64 {
	if a<b {
		return b
	}
	return a
}

func main() {
	var n int
	Scan(&n)
	a:=make([]int64,n,n)
	b:=make([]int64,n,n)
	for i:=range a {
		Scan(&a[i],&b[i])
	}
	var u,v []int
	var best int64 = X+X
	
	ta:=make([]int64,n,n)
	tb:=make([]int64,n,n)
	for lp:=0; lp<1000; lp++ {
		copy(ta,a)
		copy(tb,b)
		tu:=make([]int,50,50)
		tv:=make([]int,50,50)
		for i:=0;i<49;i++ {
			p:=rand.Intn(n)
			q:=(p+rand.Intn(n-1))%n
			tu[i],tv[i]=p,q
			aa:=(ta[p]+ta[q])/2
			bb:=(tb[p]+tb[q])/2
			ta[p],tb[p]=aa,bb
			ta[q],tb[q]=aa,bb
		}
		zs:=int64(X+X)
		zi:=-1
		for i:=1;i<n;i++ {
			aa:=(ta[0]+ta[i])/2
			bb:=(tb[0]+tb[i])/2
			s:=max(abs(aa-X),abs(bb-X))
			if s<zs {
				zs,zi=s,i
			}
		}
		if zi>0&&zs<best {
			tu[49],tv[49]=0,zi
			best,u,v=zs,tu,tv
		}
	}
	
	Println(len(u))
	for i,ui:=range u {
		Println(ui+1,v[i]+1)
	}
}
0