結果

問題 No.1701 half price
ユーザー harurunharurun
提出日時 2021-02-22 01:20:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,654 ms / 3,000 ms
コード長 1,903 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,200 KB
最終ジャッジ日時 2024-07-23 03:26:00
合計ジャッジ時間 5,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,704 KB
testcase_01 AC 46 ms
61,768 KB
testcase_02 AC 198 ms
76,032 KB
testcase_03 AC 49 ms
62,144 KB
testcase_04 AC 197 ms
76,020 KB
testcase_05 AC 57 ms
68,036 KB
testcase_06 AC 1,654 ms
75,856 KB
testcase_07 AC 1,634 ms
76,200 KB
testcase_08 AC 37 ms
53,712 KB
testcase_09 AC 43 ms
61,620 KB
testcase_10 AC 37 ms
53,616 KB
testcase_11 AC 37 ms
53,532 KB
testcase_12 AC 38 ms
53,356 KB
testcase_13 AC 38 ms
54,112 KB
testcase_14 AC 37 ms
52,464 KB
testcase_15 AC 38 ms
52,660 KB
testcase_16 AC 39 ms
53,424 KB
testcase_17 AC 39 ms
54,324 KB
testcase_18 AC 37 ms
53,340 KB
testcase_19 AC 37 ms
53,188 KB
testcase_20 AC 37 ms
53,340 KB
testcase_21 AC 37 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#想定解法2
class INPUT:
  def __init__(self):
    from sys import argv
    if argv[-1] in ["./Main.py","prog.py","Main.py"]:#Atcoder:./Main.py,Wandbox:prog.py,yukicoder:Main.py
      self.l=open(0).read().split()[::-1]
    else:
      self.l=open("_input.txt",mode="r").read().split()[::-1]
    self.length=len(self.l)
    return

  def stream(self,k=1,f=int,f2=False):
    assert(-1<k)
    m=self.length
    if m==0 or m<k:
      raise Exception("There is no input!")
    elif f!=str:
      if k==0:
        self.length=0
        return list(map(f,self.l[::-1]))
      if k==1 and not f2:
        self.length-=1
        return f(self.l.pop())
      if k==1 and f2:
        self.length-=1
        return [f(self.l.pop())]
      ret=[]
      for _ in [0]*k:
        ret.append(f(self.l.pop()))
      self.length-=k
      return ret
    else:
      if k==0:
        self.length=0
        return self.l[::-1]
      if k==1 and not f2:
        self.length-=1
        return self.l.pop()
      if k==1 and f2:
        self.length-=1
        return [self.l.pop()]
      ret=[]
      for _ in [0]*k:
        ret.append(self.l.pop())
      self.length-=k
      return ret
pin=INPUT().stream

def change(n,k):
  ret=""
  while n!=0:
    ret+=str(n%k)
    n//=k
  return ret

def main():
  N,W=pin(2)
  assert(1<=N<=13)
  assert(0<=W<=pow(10,9))
  a=pin(0)
  for i in a:
    assert(0<=i<=pow(10,9))
    debug=i%2
    assert(debug==0)
  cnt_0=a.count(0)
  n=N-cnt_0
  A=list(filter(lambda x:x!=0,a))
  if W==0:
    return print(pow(2,cnt_0)-1)#何も選ばないことはできない
  ans=set()
  B=[i//2 for i in A]
  for i in range(3**n):
    s=0
    b=0
    x=1
    u=change(i,3).ljust(n,"0")
    for j in range(n):
      if u[j]=="1":
        s+=A[j]
        b+=x
      elif u[j]=="2":
        s+=B[j]
        b+=x
      x*=2
    if s==W:
      ans.add(b)
  print(len(ans)*pow(2,cnt_0))
  return

main()

0