結果

問題 No.2542 Yokan for Two
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-11-24 21:42:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

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