結果
| 問題 |
No.5007 Steiner Space Travel
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-30 16:07:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 162 ms / 1,000 ms |
| コード長 | 4,889 bytes |
| コンパイル時間 | 228 ms |
| 実行使用メモリ | 83,772 KB |
| スコア | 7,163,736 |
| 最終ジャッジ日時 | 2022-07-30 16:07:41 |
| 合計ジャッジ時間 | 6,522 ms |
|
ジャッジサーバーID (参考情報) |
judge12 / judge13 |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
import sys, random
input = lambda : sys.stdin.readline().rstrip()
write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input())
def debug(_l_):
for s in _l_.split():
print(f"{s}={eval(s)}", end=" ")
print()
def dlist(*l, fill=0):
if len(l)==1:
return [fill]*l[0]
ll = l[1:]
return [dlist(*ll, fill=fill) for _ in range(l[0])]
import random
### 最小全域木 クラスカル法 kruskal
# 連結成分を持っておくために必要
class UnionFindTree:
def __init__(self, n):
self.n = n
self.parent = [-1] * n
def root(self, i):
inter = set()
while self.parent[i]>=0:
inter.add(i)
i = self.parent[i]
r = i
for i in inter:
self.parent[i] = r
return r
def connect(self, i, j):
"""連結操作が実行されたときTrueを返す
"""
if i==j:
return False
ri = self.root(i)
rj = self.root(j)
if ri==rj:
return False
si = -self.parent[ri]
sj = -self.parent[rj]
if si<sj:
self.parent[ri] = rj
self.parent[rj] -= si
else:
self.parent[rj] = ri
self.parent[ri] -= sj
return True
def size(self, i):
return -self.parent[self.root(i)]
def kmean(xy, k):
n = len(xy)
# cs = [(random.randint(0,1000), random.randint(0,1000)) for _ in range(k)]
if k>=n:
cs = [xy[i%n] for i in range(k)]
index = [[] for i in range(k)]
for i in range(n):
index[i].append(i)
return cs, index
nokori = set(range(n))
i0 = random.randint(0,n-1)
cs = [xy[i0]]
nokori.remove(i0)
for i in range(m-1):
i1 = max(nokori, key=lambda ii: min((xy[ii][0]-x)**2 + (xy[ii][1]-y)**2 for x,y in cs))
cs.append(xy[i1])
for _ in range(50):
index = [[] for _ in range(k)]
for i in range(n):
x,y = xy[i]
ind = min(range(k), key=lambda j: (x-cs[j][0])**2 + (y-cs[j][1])**2)
index[ind].append(i)
ncs = []
for i in range(k):
sx = sy = 0
if not index[i]:
ncs.append((random.randint(0,1000), random.randint(0,100)))
else:
for ind in index[i]:
x,y = xy[ind]
sx += x
sy += y
ncs.append((int(round(sx/len(index[i]))), int(round(sy/len(index[i])))))
cs = ncs
return cs, index
def main(n,m,xy,show=False):
cs,index = kmean(xy, m)
from itertools import permutations as ps
best = (INF, None)
for inds in ps(range(m)):
cost = 0
for i in range(m):
x,y = cs[inds[i]]
xx,yy = cs[inds[i-1]]
cost += (x-xx)**2 + (y-yy)**2
if cost<best[0]:
best = (cost, inds)
order = best[1]
if show:
for item in cs:
print(item[0], item[1])
for i in range(m):
if 0 in index[i]:
for j in range(m):
if order[j]==i:
order = order[j:] + order[:j]
break
break
cost = 0
alpha = 5
ans = []
def dist(cur,u):
cx,cy = xy[cur] if cur<n else cs[cur-n]
ux,uy = xy[u] if u<n else cs[u-n]
return ((cx-ux)**2 + (cy-uy)**2)
done = [0]*n
for j in order:
item = index[j]
if not item:
continue
item.sort()
cur = item[0]
nokori = set(item)
nokori.remove(cur)
ans.append((1, cur+1))
done[cur] = 1
while nokori:
u = min(nokori, key=lambda u: alpha*(dist(cur,u)))
d = dist(cur,u)
if alpha*d < dist(cur,n+j) + dist(n+j,u):
ans.append((1, u+1))
cost += alpha*alpha*d
else:
ans.append((2, j+1))
ans.append((1, u+1))
cost += (dist(cur, n+j) + dist(n+j, u)) * alpha
done[u] = 1
cur = u
nokori.remove(u)
ans.append((2, j+1))
# for ind in item:
# ans.append((1, ind+1))
# ans.append((2, j+1))
# cost += alpha*((xy[ind][0] - cs[j][0])**2 + (xy[ind][1] - cs[j][1])**2)
cost += best[0]
assert all(done), sum(done)
ans.append((1,1))
if show:
print(len(ans))
for item in ans:
print(item[0], item[1])
return cost, cs, index
n,m = list(map(int, input().split()))
xy = [LI() for _ in range(n)]
cost, cs, index = main(n,m,xy,show=True)