結果
問題 | No.2078 魔抜けなパープル |
ユーザー | ldsyb |
提出日時 | 2022-09-25 21:24:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 650 ms / 2,000 ms |
コード長 | 645 bytes |
コンパイル時間 | 3,752 ms |
コンパイル使用メモリ | 263,832 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 23:22:04 |
合計ジャッジ時間 | 6,734 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
6,816 KB |
testcase_01 | AC | 397 ms
6,940 KB |
testcase_02 | AC | 285 ms
6,944 KB |
testcase_03 | AC | 348 ms
6,940 KB |
testcase_04 | AC | 260 ms
6,944 KB |
testcase_05 | AC | 264 ms
6,944 KB |
testcase_06 | AC | 650 ms
6,940 KB |
testcase_07 | AC | 288 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using namespace chrono; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif int main() { int64_t t; cin >> t; int64_t inf = (1LL << 60); for (int64_t _ = 0; _ < t; _++) { int64_t x, a; cin >> x >> a; vector dp(a + 1, inf); dp[a] = 0; for (int64_t i = a; 0 <= i; i--) { for (int64_t j = 1; j <= min<int64_t>(i, 320); j++) { dp[i - j] = min(dp[i - j], dp[i] + j * j + x); } } cout << dp[0] << endl; } return 0; }