QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#556349#2299. Heating UpqwqqwqqwqeWA 68ms27144kbC++171.5kb2024-09-10 17:11:132024-09-10 17:11:14

Judging History

你现在查看的是最新测评结果

  • [2024-09-10 17:11:14]
  • 评测
  • 测评结果:WA
  • 用时:68ms
  • 内存:27144kb
  • [2024-09-10 17:11:13]
  • 提交

answer


#include"bits/stdc++.h"
#define _det(...) fprintf(stderr,__VA_ARGS__)
#define Print(a) cerr<<a<<"\n"
#define IOS ios::sync_with_stdio(0);cin.tie(0)
#define Cases int T;cin>>T;while(T--)
#define Debug(in) cerr<<#in<<" = "<<(in)<<"\n"
#define Watch(in) Detect;Debug(in);
#define Detect _det("Passing [%s] in LINE %d\n",__FUNCTION__,__LINE__)
#define ll long long
using namespace std;

const int maxn = 1e6+5;
const ll INF = 5e18;
ll a[maxn];
pair<ll,int> ord[maxn];
int n;
ll ans = INF;

ll runs (int pos) {
    int l = pos - 1, r = pos + 1;
    ll sum = a[pos]+a[pos], res = a[pos];
    while (r != n+n+1 || l != 0) {
        if (res >= ans) {
            res = INF;
            break;
        }
        if (a[l] < a[r]) {
            if (sum < a[l]) {
                res += a[l] - sum;
                sum = a[l];
            }
            sum += a[l--];
        }
        else {
            if (sum < a[r]) {
                res += a[r] - sum;
                sum = a[r];
            }
            sum += a[r++];     
        }
    }
    return res;
}

int main () {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin >> n;
    a[0] = INF;
    a[n + n + 1] = INF;
    for (int i = 1;i <= n;i++) {
        cin >> a[i];
        a[n + i] = a[i];
        ord[i] = {a[i], i};
        ord[n + i] = {a[i], n + i};
    }
    sort(ord + 1, ord + n + 1);
    for (int i = 1;i <= n+n;i++) {
       ans = min(ans, runs(ord[i].second)); 
    }
    cout << ans;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5664kb

input:

4
10 20 15 1

output:

9

result:

ok single line: '9'

Test #2:

score: 0
Accepted
time: 37ms
memory: 27084kb

input:

500000
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 1...

output:

1

result:

ok single line: '1'

Test #3:

score: 0
Accepted
time: 35ms
memory: 26948kb

input:

500000
500000 499999 499998 499997 499996 499995 499994 499993 499992 499991 499990 499989 499988 499987 499986 499985 499984 499983 499982 499981 499980 499979 499978 499977 499976 499975 499974 499973 499972 499971 499970 499969 499968 499967 499966 499965 499964 499963 499962 499961 499960 499959...

output:

1

result:

ok single line: '1'

Test #4:

score: 0
Accepted
time: 68ms
memory: 27060kb

input:

500000
269655 357411 31288 467020 110496 411556 112354 389593 171879 31947 4478 451939 305813 353339 49648 499863 157385 370552 9830 451015 205703 127891 152977 102706 178312 99678 251482 407026 65794 348294 45973 39969 169990 115902 287834 225236 292268 427507 131002 392853 312830 353489 390159 370...

output:

13561

result:

ok single line: '13561'

Test #5:

score: 0
Accepted
time: 1ms
memory: 5692kb

input:

3
0 0 0

output:

0

result:

ok single line: '0'

Test #6:

score: 0
Accepted
time: 17ms
memory: 27004kb

input:

500000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

0

result:

ok single line: '0'

Test #7:

score: 0
Accepted
time: 1ms
memory: 5624kb

input:

3
10000000000000 10000000000000 10000000000000

output:

10000000000000

result:

ok single line: '10000000000000'

Test #8:

score: -100
Wrong Answer
time: 52ms
memory: 27144kb

input:

500000
10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000000000 10000000...

output:

-9223360000000000000

result:

wrong answer 1st lines differ - expected: '10000000000000', found: '-9223360000000000000'