結果
問題 | No.2542 Yokan for Two |
ユーザー |
![]() |
提出日時 | 2023-11-24 22:26:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,883 bytes |
コンパイル時間 | 1,800 ms |
コンパイル使用メモリ | 134,696 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-09-26 09:32:44 |
合計ジャッジ時間 | 10,129 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
ソースコード
// #pragma GCC target("avx2") // #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <cassert> #include <climits> #include <cmath> #include <complex> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <tuple> #include <vector> #include <unordered_map> using namespace std; using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; #define TEST cerr << "TEST" << endl #define AMARI 998244353 // #define AMARI 1000000007 #define TIME_LIMIT 1980000 #define el '\n' #define El '\n' #define MULTI_TEST_CASE false void solve(void) { int l,n; cin >> l >> n; vector<int> x(n); vector<bool> kireme(l,false); for(int i = 0; i < n; i++){ cin >> x[i]; } x.push_back(l); n++; //dp0[i] := 赤側を選んでる時の、i番目の切れ目まで見た時のありえるA-Bの値の集合 vector<bitset<200002>> dp0(n + 1),dp1(n + 1); const int m = 100000; dp0[0 + m] = true; for(int i = 0; i < n; i++){ int dif = x[i] - (i == 0 ? 0 : x[i - 1]); for(int j = 0; j < 200002; j++){ if(!dp0[i][j])continue; dp0[i + 1][j + dif] = true; if(i != 0)dp1[i + 1][j - dif] = true; } for(int j = 0; j < 200002; j++){ if(!dp1[i][j])continue; dp0[i + 1][j + dif] = true; dp1[i + 1][j - dif] = true; } } int ans = INT_MAX; for(int j = 0; j < 200002; j++){ if(dp1[n][j])ans = min(ans,abs(j - m)); } cout << ans << el; return; } void calc(void) { return; } signed main(void) { cin.tie(nullptr); ios::sync_with_stdio(false); calc(); int t = 1; if(MULTI_TEST_CASE) cin >> t; while(t--) { solve(); } return 0; }