結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー mkawa2mkawa2
提出日時 2024-11-17 18:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,329 ms / 3,000 ms
コード長 1,171 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 351,516 KB
最終ジャッジ日時 2024-11-17 18:37:17
合計ジャッジ時間 22,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 62 ms
60,800 KB
testcase_04 AC 66 ms
64,896 KB
testcase_05 AC 55 ms
65,408 KB
testcase_06 AC 51 ms
61,568 KB
testcase_07 AC 44 ms
54,528 KB
testcase_08 AC 50 ms
62,080 KB
testcase_09 AC 63 ms
62,080 KB
testcase_10 AC 56 ms
64,768 KB
testcase_11 AC 54 ms
64,256 KB
testcase_12 AC 59 ms
69,696 KB
testcase_13 AC 49 ms
61,056 KB
testcase_14 AC 269 ms
169,032 KB
testcase_15 AC 678 ms
240,456 KB
testcase_16 AC 986 ms
309,384 KB
testcase_17 AC 701 ms
247,192 KB
testcase_18 AC 566 ms
245,868 KB
testcase_19 AC 868 ms
273,604 KB
testcase_20 AC 330 ms
174,416 KB
testcase_21 AC 866 ms
274,908 KB
testcase_22 AC 434 ms
197,868 KB
testcase_23 AC 464 ms
198,704 KB
testcase_24 AC 1,329 ms
351,516 KB
testcase_25 AC 1,317 ms
333,724 KB
testcase_26 AC 1,306 ms
322,952 KB
testcase_27 AC 1,266 ms
320,140 KB
testcase_28 AC 1,278 ms
336,332 KB
testcase_29 AC 1,303 ms
336,280 KB
testcase_30 AC 1,238 ms
333,572 KB
testcase_31 AC 1,311 ms
336,536 KB
testcase_32 AC 1,325 ms
336,456 KB
testcase_33 AC 1,294 ms
335,108 KB
testcase_34 AC 54 ms
60,928 KB
testcase_35 AC 46 ms
53,760 KB
testcase_36 AC 46 ms
53,760 KB
testcase_37 AC 46 ms
53,888 KB
testcase_38 AC 449 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import Counter

def sol():
    cnt=Counter()
    for (a,b),p in zip(ab,pp):
        for c,d in cd:
            x=a-c
            y=b-d
            cnt[x,y]+=p
    return max(cnt.values())

n,m=LI()
pp=LI()
ab=LLI(n)
cd=LLI(m)
ans=max(0,sol())
ab=[(-a,b) for a,b in ab]
ans=max(ans,sol())
ab=[(a,-b) for a,b in ab]
ans=max(ans,sol())
ab=[(-a,b) for a,b in ab]
ans=max(ans,sol())
print(ans)
0