Submission #1053239

#TimeUsernameProblemLanguageResultExecution timeMemory
1053239vjudge1The short shank; Redemption (BOI21_prison)C++17
0 / 100
37 ms5916 KiB
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#warning That's not the baby, that's my baby

#define debug(x) #x << " = " << x << '\n'
typedef long long ll;

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(0);
  std::cout.tie(0);
  #ifdef LOCAL
freopen("input.txt", "r", stdin);
  #endif
  
  int n, D, T;
	std::cin >> n >> D >> T;

	std::vector<int> v;
	int y = 0;
	int answer = n;
	for (int i = 1; i <= n; i++) {
		int x;
		std::cin >> x;
		if (x > T) {
			if (y > T) {
				v.back()++;
			} else {
				v.push_back(1);
			}
		}
		y = x;
	}

	std::sort(v.begin(), v.end());
	std::reverse(v.begin(), v.end());

	for (int i = 0; i < D && i < (int) v.size(); i++) {
		answer -= v[i];
	}
	std::cout << answer;

  return 0;
}

Compilation message (stderr)

prison.cpp:5:2: warning: #warning That's not the baby, that's my baby [-Wcpp]
    5 | #warning That's not the baby, that's my baby
      |  ^~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...