Submission #671550

#TimeUsernameProblemLanguageResultExecution timeMemory
671550smartmonkyDivide and conquer (IZhO14_divide)C++14
48 / 100
1075 ms2508 KiB
#include <bits/stdc++.h> #define ff first #define ss second #define pb push_back #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define int long long using namespace std; const int N = 500001; int f[N],s[N], pos[N]; int n; main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n; for(int i = 1; i <= n; i++){ int a, b, c; cin >> a >>b >> c; pos[i] = a; f[i] = b + f[i - 1]; s[i] = c + s[i - 1]; } int ans = 0; for(int i = 1; i <= n; i++){ for(int mid = i; mid <= n ; mid++) if(s[mid] - s[i - 1] >= abs(pos[i] - pos[mid])) ans = max(ans, f[mid] - f[i - 1]); } cout << ans; }

Compilation message (stderr)

divide.cpp:14:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   14 | main(){
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...