Submission #1088663

#TimeUsernameProblemLanguageResultExecution timeMemory
1088663xnqsDivide and conquer (IZhO14_divide)C++17
0 / 100
1 ms348 KiB
#include <iostream> #include <fstream> #include <vector> #include <queue> #include <utility> #include <algorithm> #include <map> #include <unordered_map> #include <cstring> int x; int diff_coords1[100005]; int diff_coords2[100005]; int coords[100005]; int arr1[100005]; int arr2[100005]; int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); std::cout.tie(NULL); std::cin >> x; for (int i = 1; i <= x; i++) { int a, b, c; std::cin >> a >> b >> c; coords[i] = a; diff_coords1[i] = coords[i] - coords[i-1]; arr1[i] = c; arr2[i] = b; } for (int i = x-1; i >= 1; i--) { diff_coords2[i] = coords[i+1] - coords[i]; } int64_t ans = 0; for (int i = 1; i <= x; i++) { ans = std::max(ans, (int64_t)arr2[i]); } int64_t base_gold = arr2[1]; int64_t base_diff = arr1[1]; for (int i = 2; i <= x; i++) { base_gold += arr2[i]; base_diff += arr1[i]; base_diff -= diff_coords1[i]; if (base_diff>=0) { ans = std::max(ans, base_gold); continue; } int64_t gold = base_gold; int64_t diff = base_diff; for (int j = 1; j < i; j++) { gold -= arr2[i]; diff -= arr1[j]; diff += diff_coords2[j]; if (diff>=0) { ans = std::max(ans,gold); break; } } } std::cout << ans << "\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...