| Task: | Grid |
| Sender: | Wave of Technology |
| Submission time: | 2018-05-26 11:45:40 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | details |
| #2 | WRONG ANSWER | 0.01 s | details |
| #3 | ACCEPTED | 0.01 s | details |
| #4 | WRONG ANSWER | 0.02 s | details |
| #5 | WRONG ANSWER | 0.01 s | details |
| #6 | WRONG ANSWER | 0.01 s | details |
| #7 | WRONG ANSWER | 0.02 s | details |
| #8 | ACCEPTED | 0.01 s | details |
| #9 | WRONG ANSWER | 0.01 s | details |
| #10 | WRONG ANSWER | 0.01 s | details |
| #11 | WRONG ANSWER | 0.01 s | details |
| #12 | WRONG ANSWER | 0.01 s | details |
| #13 | WRONG ANSWER | 0.01 s | details |
| #14 | WRONG ANSWER | 0.01 s | details |
| #15 | WRONG ANSWER | 0.01 s | details |
| #16 | WRONG ANSWER | 0.01 s | details |
| #17 | ACCEPTED | 0.02 s | details |
| #18 | WRONG ANSWER | 0.01 s | details |
| #19 | WRONG ANSWER | 0.01 s | details |
| #20 | WRONG ANSWER | 0.01 s | details |
| #21 | WRONG ANSWER | 0.01 s | details |
| #22 | WRONG ANSWER | 0.01 s | details |
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
cin.tie(NULL);
std::ios::sync_with_stdio(false);
ll n;
cin >> n;
vector<ll> inputti(n+5);
vector<ll> leftmin(n+5);
vector<ll> rightmax(n+5);
vector<ll> leftbest(n+5);
vector<ll> rightbest(n+5);
for(int i = 0; i < n; i++)
cin>>inputti[i+1];
// compute leftmin
leftmin[1] = inputti[1];
for(int i = 2; i <= n; i++)
leftmin[i] = min(inputti[i],leftmin[i-1]);
rightmax[n] = inputti[n];
// compute rightmax
for(int i = n-1; i >= 1; i--)
rightmax[i] = max(inputti[i],rightmax[i+1]);
// compute leftbest
leftbest[0] = 0;
for(int i = 1; i <= n; i++)
leftbest[i] = max(inputti[i]-leftmin[i],leftbest[i-1]);
// compute rightbest
rightbest[n+1] = 0;
for(int i = n; i >= 1; i--)
rightbest[i] = max(-inputti[i]+rightmax[i],rightbest[i+1]);
ll outcome = 0;
for(int i = n-1; i >= 1; i--)
outcome = max(outcome,leftbest[i]+rightbest[i+1]);
outcome = max(outcome, rightbest[1]);
cout<<outcome<<endl;
}
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 2 00 00 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 2 10 00 |
| correct output |
|---|
| -1 |
| user output |
|---|
| 0 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 2 11 00 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 2 11 01 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 0 |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 2 11 11 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 0 |
Test 8
Verdict: ACCEPTED
| input |
|---|
| 3 000 000 000 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 3 100 100 100 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 3 101 101 101 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 0 |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 3 111 101 101 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 0 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 3 111 000 000 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 13
Verdict: WRONG ANSWER
| input |
|---|
| 3 111 000 111 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 111 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 3 111 100 111 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 11 |
Test 15
Verdict: WRONG ANSWER
| input |
|---|
| 3 111 101 111 |
| correct output |
|---|
| 4 |
| user output |
|---|
| 10 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 3 111 111 111 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 0 |
Test 17
Verdict: ACCEPTED
| input |
|---|
| 1000 000000000000000000000000000000... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 18
Verdict: WRONG ANSWER
| input |
|---|
| 1000 000000000000000000000000000000... |
| correct output |
|---|
| 10 |
| user output |
|---|
| 0 |
Test 19
Verdict: WRONG ANSWER
| input |
|---|
| 1000 100000000000000000100000000000... |
| correct output |
|---|
| 41 |
| user output |
|---|
| 0 |
Test 20
Verdict: WRONG ANSWER
| input |
|---|
| 1000 000000100000000001000000010000... |
| correct output |
|---|
| 192 |
| user output |
|---|
| 0 |
Test 21
Verdict: WRONG ANSWER
| input |
|---|
| 1000 111111111111111111111111111111... |
| correct output |
|---|
| 999 |
| user output |
|---|
| 0 |
Test 22
Verdict: WRONG ANSWER
| input |
|---|
| 1000 111111111111111111111111111111... |
| correct output |
|---|
| 1000 |
| user output |
|---|
| 0 |
