結果

問題 No.1508 Avoid being hit
ユーザー vwxyzvwxyz
提出日時 2023-07-18 13:31:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 960 ms / 3,000 ms
コード長 2,284 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 50,564 KB
最終ジャッジ日時 2024-09-18 12:51:21
合計ジャッジ時間 22,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 788 ms
40,624 KB
testcase_01 AC 36 ms
11,904 KB
testcase_02 AC 36 ms
11,904 KB
testcase_03 AC 38 ms
11,776 KB
testcase_04 AC 39 ms
12,032 KB
testcase_05 AC 41 ms
12,032 KB
testcase_06 AC 39 ms
11,776 KB
testcase_07 AC 38 ms
12,032 KB
testcase_08 AC 38 ms
12,032 KB
testcase_09 AC 39 ms
12,032 KB
testcase_10 AC 36 ms
11,904 KB
testcase_11 AC 35 ms
12,032 KB
testcase_12 AC 37 ms
11,904 KB
testcase_13 AC 37 ms
11,904 KB
testcase_14 AC 36 ms
12,032 KB
testcase_15 AC 36 ms
11,776 KB
testcase_16 AC 687 ms
32,048 KB
testcase_17 AC 415 ms
23,576 KB
testcase_18 AC 327 ms
21,788 KB
testcase_19 AC 606 ms
28,864 KB
testcase_20 AC 897 ms
37,360 KB
testcase_21 AC 554 ms
28,840 KB
testcase_22 AC 702 ms
32,864 KB
testcase_23 AC 739 ms
34,692 KB
testcase_24 AC 960 ms
37,668 KB
testcase_25 AC 885 ms
35,456 KB
testcase_26 AC 95 ms
14,080 KB
testcase_27 AC 474 ms
23,772 KB
testcase_28 AC 478 ms
23,928 KB
testcase_29 AC 908 ms
35,996 KB
testcase_30 AC 506 ms
24,752 KB
testcase_31 AC 811 ms
32,884 KB
testcase_32 AC 873 ms
34,776 KB
testcase_33 AC 263 ms
18,284 KB
testcase_34 AC 791 ms
43,200 KB
testcase_35 AC 111 ms
15,232 KB
testcase_36 AC 454 ms
28,136 KB
testcase_37 AC 221 ms
19,968 KB
testcase_38 AC 638 ms
36,080 KB
testcase_39 AC 416 ms
28,860 KB
testcase_40 AC 790 ms
41,764 KB
testcase_41 AC 490 ms
31,688 KB
testcase_42 AC 808 ms
45,816 KB
testcase_43 AC 959 ms
50,564 KB
testcase_44 AC 39 ms
12,032 KB
testcase_45 AC 40 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

def Compress(lst):
    decomp=sorted(list(set(lst)))
    comp={x:i for i,x in enumerate(decomp)}
    return comp,decomp

N,Q=map(int,readline().split())
A=list(map(int,readline().split()))
B=list(map(int,readline().split()))
for q in range(Q):
    A[q]-=1
    B[q]-=1
    if A[q]>B[q]:
        A[q],B[q]=B[q],A[q]
dp=[[] for q in range(Q+1)]
for q in range(1,Q+1):
    lst=[A[q-1],A[q-1]+1,B[q-1],B[q-1]+1]
    for l,r in dp[q-1]:
        if 0<l:
            l+=1
        if r<N:
            r-=1
        if l<r:
            lst.append(l)
            lst.append(r)
    comp,decomp=Compress(lst)
    le=len(comp)
    bl=[1]*(le-1)
    for l,r in dp[q-1]:
        if 0<l:
            l+=1
        if r<N:
            r-=1
        if l<r:
            for i in range(comp[l],comp[r]):
                bl[i]=0
    for i in range(comp[A[q-1]],comp[A[q-1]+1]):
        bl[i]=0
    for i in range(comp[B[q-1]],comp[B[q-1]+1]):
        bl[i]=0
    L,R=[],[]
    if not bl[0]:
        L.append(0)
    for i in range(1,le-1):
        if bl[i-1] and not bl[i]:
            L.append(i)
        if not bl[i-1] and bl[i]:
            R.append(i)
    if not bl[le-2]:
        R.append(le-1)
    for l,r in zip(L,R):
        dp[q].append((decomp[l],decomp[r]))
if dp[Q]==[(0,N)]:
    print("NO")
    exit()

ans_lst=[]
l,r=dp[Q][0]
if l:
    x=l-1
else:
    x=r
ans_lst.append(x)
for q in range(Q-1,-1,-1):
    for x in (x-1,x,x+1):
        if 0<=x<N and not any(l<=x<r for l,r in dp[q]):
            ans_lst.append(x)
            break
ans_lst=ans_lst[::-1]
print("YES")
print(*[x+1 for x in ans_lst],sep="\n")
0