結果

問題 No.1515 Making Many Multiples
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-30 21:21:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,817 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 260,988 KB
最終ジャッジ日時 2024-12-30 21:22:33
合計ジャッジ時間 57,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,472 KB
testcase_01 AC 72 ms
224,588 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 266 ms
82,348 KB
testcase_14 TLE -
testcase_15 AC 265 ms
82,132 KB
testcase_16 TLE -
testcase_17 AC 1,158 ms
107,856 KB
testcase_18 AC 706 ms
257,856 KB
testcase_19 AC 241 ms
91,392 KB
testcase_20 AC 1,356 ms
260,988 KB
testcase_21 TLE -
testcase_22 AC 143 ms
76,516 KB
testcase_23 TLE -
testcase_24 AC 53 ms
52,224 KB
testcase_25 AC 63 ms
62,080 KB
testcase_26 AC 46 ms
51,968 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 263 ms
78,856 KB
testcase_30 AC 583 ms
245,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1515

MIN_VALUE = -10 ** 18

def main():
    N, K, X, Y = map(int, input().split())
    A = list(map(int, input().split()))

    dp = [[MIN_VALUE] * K for _ in range(K)]
    dp[X % K][Y % K] = 0
    dp[Y % K][X % K] = 0
    max_dp_x = [0] * K
    for x in range(K):
        m_value = MIN_VALUE
        for y in range(K):
            m_value = max(m_value, dp[x][y])
        max_dp_x[x] = m_value
    max_dp_y = [0] * K
    for y in range(K):
        m_value = MIN_VALUE
        for x in range(K):
            m_value = max(m_value, dp[x][y])
        max_dp_y[y] = m_value

    for a in A:
        a_ = a % K

        updates = {}
        # 結局Aを捨てるもの
        for k_y in range(K):
            k_x_ = (- a_ - k_y) % K
            new_key = (k_x_, k_y) 
            updates[new_key] = dp[k_x_][k_y] + 1
        
        for k_y in range(K):
            k_x_ = (- a_ - k_y) % K
            new_key = (a_, k_y)
            if new_key not in updates:
                updates[new_key] = dp[a_][k_y]
            updates[new_key] = max(updates[new_key], dp[k_x_][k_y] + 1, max_dp_y[k_y])
        
        for k_x in range(K):
            k_y_ = (- a_ - k_x) % K
            new_key = (k_x, a_)
            if new_key not in updates:
                updates[new_key] = dp[k_x][a_]
            updates[new_key] = max(updates[new_key], dp[k_x][k_y_] + 1, max_dp_x[k_x])

        #更新
        for key, value in updates.items():
            x, y = key
            dp[x][y] = max(dp[x][y], value)
            max_dp_x[x] = max(max_dp_x[x], dp[x][y])
            max_dp_y[y] = max(max_dp_y[y], dp[x][y])

    answer = MIN_VALUE
    for x in range(K):
        for y in range(K):
            answer = max(answer, dp[x][y])
    print(answer)



if __name__ == "__main__":
    main()
0