結果
問題 | No.2000 Distanced Characters |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-07-09 19:55:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,277 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 361,456 KB |
最終ジャッジ日時 | 2024-06-10 03:19:16 |
合計ジャッジ時間 | 7,244 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
65,876 KB |
testcase_01 | AC | 110 ms
78,116 KB |
testcase_02 | AC | 44 ms
57,660 KB |
testcase_03 | AC | 44 ms
57,888 KB |
testcase_04 | AC | 190 ms
80,320 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys import math input = sys.stdin.readline def segfunc(x, y): return min(x,y) ide_ele = (2,-1) class SegTree: """ Segment Tree """ def __init__(self, init_val, segfunc, ide_ele): """ 初期化 init_val: 配列の初期値 """ n = len(init_val) self.segfunc = segfunc self.ide_ele = ide_ele self.num = 1 << (n - 1).bit_length() self.tree = [ide_ele] * 2 * self.num # 配列の値を葉にセット for i in range(n): self.tree[self.num + i] = init_val[i] # 構築していく for i in range(self.num - 1, 0, -1): self.tree[i] = segfunc(self.tree[2 * i], self.tree[2 * i + 1]) def update(self, k, x): """ k番目の値をxに更新 k: index(0-index) x: update value """ k += self.num self.tree[k] = x while k > 1: self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1]) k >>= 1 def query(self, l, r): """ [l, r)のsegfuncしたものを得る l: index(0-index) r: index(0-index) """ res = self.ide_ele l += self.num r += self.num while l < r: if l & 1: res = self.segfunc(res, self.tree[l]) l += 1 if r & 1: res = self.segfunc(res, self.tree[r - 1]) l >>= 1 r >>= 1 return res S = list(input())[:-1] D = [list(map(int,input().split())) for _ in range(26)] S = [ord(i)-ord('a') for i in S] N = len(S) INF = N+100 dist = defaultdict(lambda:INF) U = [[(1-int(S[i]==j),i) for i in range(N)] for j in range(26)] T = [SegTree(U[i],segfunc,ide_ele) for i in range(26)] for i in range(N-1): s = S[i] for j in range(26): _,k = T[j].query(i+1,N) if _==1: continue dist[(s,j)] = min(dist[(s,j)],k-i) X = [['Y']*26 for _ in range(26)] for i in range(26): for j in range(26): if dist[(i,j)]<D[i][j]: X[i][j]='N' for i in range(26): print(*X[i])