Submission #233086

#TimeUsernameProblemLanguageResultExecution timeMemory
233086triple_faultTriple Jump (JOI19_jumps)C++14
0 / 100
4066 ms3704 KiB
/* fucking change this 2020 */ #include <cstdio> #include <vector> #include <algorithm> #include <cstring> #include <cstdlib> #include <set> #include <map> #include <random> #define ll long long using namespace std; //rng /* mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); ll rand(ll L, ll R) { return uniform_int_distribution<ll>(L, R)(rng); }*/ void foo() { ll n; scanf("%lld", &n); ll vals[n]; for (ll i = 0; i < n; ++i) scanf("%lld", &vals[i]); ll q; scanf("%lld", &q); while (q --) { ll a, b; scanf("%lld %lld", &a, &b); --a; --b; ll mxv = -1, idx = -1; for (ll i = a; i <= b; ++i) if (vals[i] > mxv) { mxv = vals[i]; idx = i; } ll ans = 0; for (ll i = a; i < idx; ++i) { ll dif = idx - i; for (ll j = idx + dif; j <= b; ++j) ans = max(ans, vals[i] + vals[j]); } for (ll i = a; i < idx; ++i) { ll dif = idx - i; for (ll j = max(i - dif, a); j < i; ++j) ans = max(ans, vals[i] + vals[j]); } for (ll i = idx + 1; i <= b; ++i) { ll dif = i - idx; for (ll j = i + dif; j <= b; ++j) ans = max(ans, vals[i] + vals[j]); } printf("%lld\n", ans + vals[idx]); } } int main(void) { ll t = 1; while (t --) foo(); return 0; }

Compilation message (stderr)

jumps.cpp: In function 'void foo()':
jumps.cpp:25:16: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     ll n; scanf("%lld", &n);
           ~~~~~^~~~~~~~~~~~
jumps.cpp:27:37: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for (ll i = 0; i < n; ++i) scanf("%lld", &vals[i]);
                                ~~~~~^~~~~~~~~~~~~~~~~~
jumps.cpp:29:16: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     ll q; scanf("%lld", &q);
           ~~~~~^~~~~~~~~~~~
jumps.cpp:31:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         ll a, b; scanf("%lld %lld", &a, &b);
                  ~~~~~^~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...