結果

問題 No.2684 折々の色
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-12-17 05:09:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,614 bytes
コンパイル時間 1,296 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 270,452 KB
最終ジャッジ日時 2024-09-29 18:30:27
合計ジャッジ時間 50,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,736 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 47 ms
62,592 KB
testcase_03 AC 54 ms
65,280 KB
testcase_04 AC 63 ms
68,608 KB
testcase_05 AC 45 ms
61,312 KB
testcase_06 AC 47 ms
62,080 KB
testcase_07 AC 47 ms
62,592 KB
testcase_08 AC 56 ms
66,304 KB
testcase_09 AC 53 ms
64,000 KB
testcase_10 AC 56 ms
65,280 KB
testcase_11 AC 738 ms
143,204 KB
testcase_12 AC 845 ms
142,720 KB
testcase_13 AC 769 ms
149,116 KB
testcase_14 AC 392 ms
106,624 KB
testcase_15 AC 757 ms
132,232 KB
testcase_16 AC 284 ms
88,064 KB
testcase_17 AC 716 ms
124,416 KB
testcase_18 AC 786 ms
146,560 KB
testcase_19 AC 692 ms
145,376 KB
testcase_20 AC 475 ms
118,016 KB
testcase_21 AC 449 ms
97,792 KB
testcase_22 AC 1,573 ms
201,468 KB
testcase_23 AC 909 ms
158,920 KB
testcase_24 AC 622 ms
112,512 KB
testcase_25 AC 763 ms
131,712 KB
testcase_26 AC 1,221 ms
188,748 KB
testcase_27 AC 817 ms
144,256 KB
testcase_28 AC 945 ms
157,260 KB
testcase_29 AC 1,875 ms
268,276 KB
testcase_30 AC 1,828 ms
267,796 KB
testcase_31 AC 545 ms
147,988 KB
testcase_32 AC 1,594 ms
244,588 KB
testcase_33 AC 1,891 ms
269,812 KB
testcase_34 AC 1,456 ms
227,476 KB
testcase_35 AC 1,400 ms
225,176 KB
testcase_36 AC 486 ms
142,028 KB
testcase_37 AC 867 ms
176,788 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,995 ms
269,812 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 51 ms
64,512 KB
testcase_48 AC 43 ms
60,928 KB
testcase_49 AC 41 ms
60,416 KB
testcase_50 AC 44 ms
62,208 KB
testcase_51 AC 53 ms
64,640 KB
testcase_52 AC 52 ms
64,896 KB
testcase_53 AC 56 ms
65,920 KB
testcase_54 AC 46 ms
62,208 KB
testcase_55 AC 46 ms
62,080 KB
testcase_56 AC 35 ms
53,376 KB
testcase_57 AC 35 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

10000X = 100tc + (100-t)TC

10000X = 100tc + 100TC - tTC

10000X-100TC = t(100c-TC)

tが100以下なので、tを決め打てば cは決まる
枝刈でも通らない?

"""

import sys
from sys import stdin

N,M = map(int,stdin.readline().split())

X = list(map(int,stdin.readline().split()))

C = []
T = []

able_t = [i+1 for i in range(100)]

for i in range(N):

    CT = list(map(int,stdin.readline().split()))
    c,t = CT[:-1],CT[-1]
    
    C.append( c )
    T.append( t )



dic = [set() for i in range(101)]


for cj,tj in zip(C,T):

    for ti in able_t:

        colori = []
        for k in range(M):
            L = 10000*X[k] - 100*cj[k]*tj
            if L % ti != 0:
                break
            tmp = L // ti + tj*cj[k]
            if tmp % 100 == 0:
                colori.append(tmp // 100)
            else:
                break
        else:
            colori = tuple(colori)
            if colori in dic[ti]:
                print ("Yes")
                sys.exit()

    dic[tj].add(tuple(cj))

C.reverse()
T.reverse()


dic = [set() for i in range(101)]

for cj,tj in zip(C,T):

    for ti in able_t:

        colori = []
        for k in range(M):
            L = 10000*X[k] - 100*cj[k]*tj
            if L % ti != 0:
                break
            tmp = L // ti + tj*cj[k]
            if tmp % 100 == 0:
                colori.append(tmp // 100)
            else:
                break
        else:
            colori = tuple(colori)
            if colori in dic[ti]:
                print ("Yes")
                sys.exit()

    dic[tj].add(tuple(cj))


print ("No")
0