답안 #1100953

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1100953 2024-10-15T05:17:38 Z akzytr Stove (JOI18_stove) C++17
0 / 100
1 ms 336 KB
#include <bits/stdc++.h>
using namespace std;
template <typename T> using ve = vector<T>;
typedef long long ll;
#define pb push_back
#define fi first
#define se second
#define endl '\n'

int main() {

	int N, K;
	cin >> N >> K;

	ve<pair<int, int>> times(N);
	for(int i = 0; i < N; i++) {
		scanf("%d", &times[i].fi);
		times[i].se = 1;
	}

	int dp[times.size() + 2][K + 1];

	int mi_left[K + 1] = {};
	int mi_left2[K + 1] = {};

	bool tk = false;

	for(int i = 0; i <= K; i++) {
		mi_left[i] = 0;
		mi_left2[i] = 1e9;
	}

	for(int i = times.size() - 1; i >= 0; i--) {
		for(int left = K; left >= 0; left--) {
			if(i == times.size() - 1 || times[i].fi + 1 != times[i + 1].fi) {
				mi_left2[left] = min(mi_left2[left], (tk == 0 ? 0 : (int)1e9) + times[i].fi);
				mi_left2[left] = min(mi_left2[left], mi_left[left] + times[i].fi);
			}

			tk = 1;
			if(left == 0) {
				break;
			}
			mi_left[left] = min((tk == 0 ? 0 : (int)1e9), mi_left2[left - 1] - times[i].fi);
		}
		tk = 1;
	}

	cout << mi_left2[K] << endl;
}

Compilation message

stove.cpp: In function 'int main()':
stove.cpp:35:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |    if(i == times.size() - 1 || times[i].fi + 1 != times[i + 1].fi) {
      |       ~~^~~~~~~~~~~~~~~~~~~
stove.cpp:21:6: warning: unused variable 'dp' [-Wunused-variable]
   21 |  int dp[times.size() + 2][K + 1];
      |      ^~
stove.cpp:17:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |   scanf("%d", &times[i].fi);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -