結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー vwxyzvwxyz
提出日時 2023-11-30 20:19:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,536 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,432 KB
最終ジャッジ日時 2024-09-26 14:48:34
合計ジャッジ時間 12,894 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
89,856 KB
testcase_01 AC 168 ms
89,728 KB
testcase_02 AC 164 ms
89,856 KB
testcase_03 AC 163 ms
89,856 KB
testcase_04 AC 164 ms
89,728 KB
testcase_05 AC 164 ms
89,728 KB
testcase_06 AC 163 ms
89,728 KB
testcase_07 AC 166 ms
89,856 KB
testcase_08 AC 168 ms
89,856 KB
testcase_09 AC 163 ms
89,856 KB
testcase_10 AC 167 ms
89,600 KB
testcase_11 AC 164 ms
89,600 KB
testcase_12 AC 165 ms
89,728 KB
testcase_13 AC 166 ms
89,728 KB
testcase_14 AC 173 ms
90,880 KB
testcase_15 AC 166 ms
89,856 KB
testcase_16 AC 169 ms
89,728 KB
testcase_17 AC 166 ms
89,728 KB
testcase_18 AC 164 ms
89,856 KB
testcase_19 AC 164 ms
89,984 KB
testcase_20 AC 162 ms
89,856 KB
testcase_21 AC 164 ms
89,600 KB
testcase_22 AC 165 ms
89,728 KB
testcase_23 AC 164 ms
89,856 KB
testcase_24 AC 163 ms
89,728 KB
testcase_25 AC 165 ms
89,728 KB
testcase_26 AC 162 ms
89,856 KB
testcase_27 AC 167 ms
89,728 KB
testcase_28 AC 163 ms
89,728 KB
testcase_29 AC 164 ms
89,856 KB
testcase_30 AC 164 ms
89,728 KB
testcase_31 AC 161 ms
89,856 KB
testcase_32 AC 165 ms
89,728 KB
testcase_33 AC 164 ms
89,856 KB
testcase_34 AC 163 ms
89,856 KB
testcase_35 AC 162 ms
89,728 KB
testcase_36 AC 163 ms
89,856 KB
testcase_37 AC 236 ms
91,008 KB
testcase_38 AC 234 ms
91,136 KB
testcase_39 AC 234 ms
91,136 KB
testcase_40 AC 278 ms
91,392 KB
testcase_41 AC 232 ms
91,008 KB
testcase_42 AC 230 ms
91,136 KB
testcase_43 AC 163 ms
89,728 KB
testcase_44 AC 248 ms
91,136 KB
testcase_45 AC 231 ms
91,008 KB
testcase_46 AC 228 ms
91,008 KB
testcase_47 AC 213 ms
93,184 KB
testcase_48 AC 284 ms
97,304 KB
testcase_49 AC 242 ms
91,392 KB
testcase_50 AC 165 ms
89,728 KB
testcase_51 AC 251 ms
97,432 KB
testcase_52 AC 268 ms
97,308 KB
testcase_53 AC 269 ms
97,300 KB
testcase_54 AC 247 ms
97,168 KB
testcase_55 AC 267 ms
97,296 KB
testcase_56 AC 256 ms
97,176 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
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

N,K=map(int,readline().split())
A=list(map(int,readline().split()))
ans="No"
if K in A:
    ans="Yes"
else:
    n=N//2
    se=set()
    for tpl in itertools.product((-1,0,1),repeat=n):
        bit0=0
        s0=0
        for a,i in zip(A[:n],tpl):
            if i==-1:
                bit0|=1
            elif i==1:
                bit0|=2
            s0+=a*i
        se.add((s0,bit0))
    for tpl in itertools.product((-1,0,1),repeat=N-n):
        bit1=0
        s1=0
        for a,i in zip(A[n:],tpl):
            if i==-1:
                bit1|=1
            elif i==1:
                bit1|=2
            s1+=a*i
        s0=K-s1
        for bit0 in range(4):
            if bit0|bit1==3 and (s0,bit0) in se:
                ans="Yes"
print(ans)
0