#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, c;
cin >> n >> c;
vector<pair<int, int>> blocks(n);
for (int i = 0; i < n; ++i) {
cin >> blocks[i].first >> blocks[i].second;
}
vector<long long> dp(n);
long long max_score = 0;
for (int i = 0; i < n; ++i) {
dp[i] = blocks[i].first; // Wysokość wieży z jednym klockiem
for (int j = 0; j < i; ++j) {
if (blocks[j].first < blocks[i].first) {
long long score = dp[j] + blocks[i].first;
if (blocks[j].second != blocks[i].second) {
score -= c;
}
if (score > dp[i]) {
dp[i] = score;
}
}
}
if (dp[i] > max_score) {
max_score = dp[i];
}
}
cout << max_score << endl;
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n, c; cin >> n >> c; vector<pair<int, int>> blocks(n); for (int i = 0; i < n; ++i) { cin >> blocks[i].first >> blocks[i].second; } vector<long long> dp(n); long long max_score = 0; for (int i = 0; i < n; ++i) { dp[i] = blocks[i].first; // Wysokość wieży z jednym klockiem for (int j = 0; j < i; ++j) { if (blocks[j].first < blocks[i].first) { long long score = dp[j] + blocks[i].first; if (blocks[j].second != blocks[i].second) { score -= c; } if (score > dp[i]) { dp[i] = score; } } } if (dp[i] > max_score) { max_score = dp[i]; } } cout << max_score << endl; return 0; } |
English