結果

問題 No.1467 Selling Cars
ユーザー QCFiumQCFium
提出日時 2021-03-17 17:11:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,004 bytes
コンパイル時間 4,756 ms
コンパイル使用メモリ 252,540 KB
実行使用メモリ 19,392 KB
最終ジャッジ日時 2024-11-15 08:47:33
合計ジャッジ時間 145,415 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 2 ms
12,344 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 3 ms
10,436 KB
testcase_10 AC 3 ms
10,624 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 388 ms
11,824 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 3,558 ms
6,820 KB
testcase_30 TLE -
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
11,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

int main() {
	int m = ri();
	int n = ri();
	std::vector<int> a(m);
	std::vector<int> b(n);
	for (auto &i : a) i = ri();
	for (auto &i : b) i = ri();
	
	std::vector<std::pair<int, int> > seq;
	for (int j = 0; j < m; j++) seq.push_back({a[j], j + 1});
	for (int j = 0; j < n; j++) seq.push_back({b[j], j + m + 1});
	std::sort(seq.begin(), seq.end());
	
	for (int i = 1; i <= m; i++) {
		atcoder::mcf_graph<int, int64_t> graph(n + m + 2);
		for (int j = 0; j < m; j++) graph.add_edge(0, j + 1, 1, 0);
		for (int j = 0; j < n; j++) graph.add_edge(j + m + 1, n + m + 1, i, 0);
		for (int j = 0; j + 1 < (int) seq.size(); j++) {
			graph.add_edge(seq[j].second, seq[j + 1].second, 1000000000, seq[j + 1].first - seq[j].first);
			graph.add_edge(seq[j + 1].second, seq[j].second, 1000000000, seq[j + 1].first - seq[j].first);
		}
		printf("%" PRId64 "\n", graph.flow(0, n + m + 1).second);
		
	}
	
	return 0;
}
0