結果

問題 No.2542 Yokan for Two
ユーザー MaxdorianMaxdorian
提出日時 2023-11-24 22:07:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 5,479 ms
コンパイル使用メモリ 309,244 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-11-24 22:07:17
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,676 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 2 ms
6,676 KB
testcase_16 AC 2 ms
6,676 KB
testcase_17 AC 2 ms
6,676 KB
testcase_18 AC 2 ms
6,676 KB
testcase_19 AC 2 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
testcase_21 AC 2 ms
6,676 KB
testcase_22 AC 2 ms
6,676 KB
testcase_23 AC 2 ms
6,676 KB
testcase_24 AC 2 ms
6,676 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,676 KB
testcase_28 AC 2 ms
6,676 KB
testcase_29 WA -
testcase_30 AC 2 ms
6,676 KB
testcase_31 AC 2 ms
6,676 KB
testcase_32 AC 2 ms
6,676 KB
testcase_33 AC 2 ms
6,676 KB
testcase_34 AC 2 ms
6,676 KB
testcase_35 AC 2 ms
6,676 KB
testcase_36 AC 2 ms
6,676 KB
testcase_37 AC 3 ms
6,676 KB
testcase_38 WA -
testcase_39 AC 2 ms
6,676 KB
testcase_40 WA -
testcase_41 AC 2 ms
6,676 KB
testcase_42 AC 3 ms
6,676 KB
testcase_43 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
template <class T> bool chmax(T &a, const T &b) {if (a < b) {a = b; return 1;} return 0;}
template <class T> bool chmin(T &a, const T &b) {if (b < a) {a = b; return 1;} return 0;}
const int INF = INT_MAX / 2;
const ll LINF = 1LL << 60;
const vector<int> dx = {-1, 0, 1, 0}, dy = {0, 1, 0, -1};
using mint = modint998244353;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int l, n;
  cin >> l >> n;
  vector<int> x;
  x.push_back(0);
  for (int i = 0; i < n; i++) {
    int val;
    cin >> val;
    x.push_back(val);
  }
  x.push_back(l);
  vector<ll> dp(n + 2, LINF);
  dp[0] = 0;
  for (int i = 2; i <= n + 1; i++) {
    for (int j = 0; j <= i - 2; j++) {
      for (int k = j + 1; k <= i - 1; k++) {
        if (abs(dp[i]) > abs(dp[j] + (x[k] - x[j]) - (x[i] - x[k]))) {
          dp[i] = dp[j] + (x[k] - x[j]) - (x[i] - x[k]);
        }
      }
    }
  }
  cout << abs(dp[n + 1]) << '\n';
  return 0;
}
0