結果

問題 No.59 鉄道の旅
ユーザー data9824data9824
提出日時 2015-06-17 22:35:29
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 986 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 59,860 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-12-24 20:38:47
合計ジャッジ時間 1,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,040 KB
testcase_01 AC 5 ms
7,168 KB
testcase_02 AC 5 ms
7,040 KB
testcase_03 AC 5 ms
7,040 KB
testcase_04 AC 76 ms
7,424 KB
testcase_05 AC 6 ms
7,168 KB
testcase_06 AC 5 ms
7,040 KB
testcase_07 AC 5 ms
7,040 KB
testcase_08 AC 17 ms
7,040 KB
testcase_09 AC 13 ms
7,168 KB
testcase_10 AC 15 ms
7,040 KB
testcase_11 AC 23 ms
7,168 KB
testcase_12 AC 187 ms
7,424 KB
testcase_13 AC 64 ms
7,552 KB
testcase_14 AC 85 ms
7,552 KB
testcase_15 AC 6 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <numeric>

using namespace std;

const int MAX_WEIGHT = 1000000;
const int SUM_UNIT = 1000;

int block(int weight) {
	return (weight - 1) / SUM_UNIT;
}

int headWeight(int block) {
	return block * SUM_UNIT + 1;
}

int main() {
	int n, k;
	cin >> n >> k;
	vector<int> w(n);
	for (int i = 0; i < n; ++i) {
		cin >> w[i];
	}
	vector<int> counts(1 + MAX_WEIGHT);
	vector<int> sums(MAX_WEIGHT / SUM_UNIT);
	for (int i = 0; i < n; ++i) {
		if (w[i] > 0) {
			int sum = accumulate(
				counts.begin() + w[i],
				counts.begin() + headWeight(block(w[i]) + 1),
				0);
			sum += accumulate(
				&sums[block(w[i])] + 1,
				&sums[block(MAX_WEIGHT)] + 1,
				0);
			if (sum < k) {
				++counts[w[i]];
				++sums[block(w[i])];
			}
		} else if (w[i] < 0) {
			if (counts[-w[i]] > 0) {
				--counts[-w[i]];
				--sums[block(-w[i])];
			}
		}
	}
	int result = accumulate(&sums[0], &sums[block(MAX_WEIGHT)] + 1, 0);
	cout << result << endl;
	return 0;
}
0