結果

問題 No.2542 Yokan for Two
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-11-24 21:42:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,833 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 205,168 KB
実行使用メモリ 349,932 KB
最終ジャッジ日時 2024-09-26 09:03:30
合計ジャッジ時間 28,733 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 238 ms
47,636 KB
testcase_04 AC 322 ms
77,440 KB
testcase_05 AC 1,058 ms
179,072 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1,833 ms
349,932 KB
testcase_08 AC 403 ms
70,460 KB
testcase_09 AC 1,787 ms
323,060 KB
testcase_10 AC 129 ms
33,636 KB
testcase_11 AC 227 ms
55,808 KB
testcase_12 AC 833 ms
139,504 KB
testcase_13 AC 118 ms
31,360 KB
testcase_14 AC 626 ms
152,960 KB
testcase_15 AC 863 ms
202,464 KB
testcase_16 AC 777 ms
185,008 KB
testcase_17 AC 647 ms
160,000 KB
testcase_18 AC 797 ms
190,192 KB
testcase_19 AC 363 ms
97,664 KB
testcase_20 AC 271 ms
74,624 KB
testcase_21 AC 315 ms
85,504 KB
testcase_22 AC 306 ms
82,432 KB
testcase_23 AC 343 ms
92,416 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 316 ms
57,144 KB
testcase_30 AC 754 ms
153,344 KB
testcase_31 AC 704 ms
156,160 KB
testcase_32 AC 667 ms
151,808 KB
testcase_33 AC 745 ms
164,708 KB
testcase_34 AC 884 ms
189,504 KB
testcase_35 AC 921 ms
199,824 KB
testcase_36 AC 860 ms
187,524 KB
testcase_37 AC 934 ms
202,044 KB
testcase_38 AC 884 ms
193,264 KB
testcase_39 AC 957 ms
213,060 KB
testcase_40 AC 913 ms
204,096 KB
testcase_41 AC 853 ms
196,392 KB
testcase_42 AC 846 ms
197,516 KB
testcase_43 AC 867 ms
201,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int L, N;
	cin >> L >> N;
	unordered_set<int> mp[111][2];
	int pre;
	cin >> pre;
	mp[0][0].insert(pre);
	for (int i = 1; i <= N; i ++) {
		int x;
		if (i < N) cin >> x;
		else x = L;
		int d = x - pre;
		for (int p = 0; p < 2; p ++) {
			for (auto& k : mp[i - 1][p]) {
				for (int s = 0; s < 2; s ++) {
					int v = d + k;
					if (s) v = d - k;
					int q = p ^ s;
					mp[i][q].insert(v);
				}
			}
		}
		pre = x;
	}
	int ans = 1e9 + 7;
	for (auto k : mp[N][1]) {
		ans = min(ans, abs(k));
	}
	cout << ans << endl;
}
0