Submission #37799

# Submission time Handle Problem Language Result Execution time Memory
37799 2017-12-28T06:38:16 Z Just_Solve_The_Problem Divide and conquer (IZhO14_divide) C++11
0 / 100
0 ms 5920 KB
#include <bits/stdc++.h>

using namespace std;

#define ll long long

const int N = (int)1e5 + 7;

ll x[N], g[N], d[N];
ll pg[N], pd[N];

bool check (int l, int r) {
    return x[r] - x[l] <= pd[r] - pd[l - 1];
}

main () {
    srand(time(0));
    int n; scanf ("%d", &n);
    for (int i = 1; i <= n; i++) {
        scanf ("%lld %lld %lld", x + i, g + i, d + i);
    }
    for (int i = 1; i <= n; i++) {
        pg[i] = pg[i - 1] + g[i];
        pd[i] = pd[i - 1] + d[i];
    }
    ll ans = 0;
    for (int i = 1; i <= n; i++) {
        if (pg[n] - pg[i - 1] <= ans) continue;
        for (int j = i; j <= n; j++) {
            if (check(i, j)) {
                ans = max(ans, pg[j] - pg[i - 1]);
            }
        }
        if (clock() > 0.9 * CLOCKS_PER_SEC) break;
    }
    cout << ans;
}

Compilation message

divide.cpp:16:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main () {
       ^
divide.cpp: In function 'int main()':
divide.cpp:18:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     int n; scanf ("%d", &n);
                            ^
divide.cpp:20:54: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf ("%lld %lld %lld", x + i, g + i, d + i);
                                                      ^
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 5920 KB Execution killed because of forbidden syscall clock_gettime (228)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 5920 KB Execution killed because of forbidden syscall clock_gettime (228)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 5920 KB Execution killed because of forbidden syscall clock_gettime (228)
2 Halted 0 ms 0 KB -