QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#556401#2299. Heating UpqwqqwqqwqeWA 60ms29196kbC++171.5kb2024-09-10 17:40:512024-09-10 17:40:51

Judging History

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

  • [2024-09-10 17:40:51]
  • 评测
  • 测评结果:WA
  • 用时:60ms
  • 内存:29196kb
  • [2024-09-10 17:40:51]
  • 提交

answer


#include"bits/stdc++.h"
#define ll long long
using namespace std;

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

int pL, pR;

ll runs (int pos) {
    pL = 0, pR = n+n+1;
    int l = pos - 1, r = pos + 1;
    ll sum = a[pos]+a[pos], res = a[pos];
    while (r-l-1 < n) {
        if (res >= ans) {
            res = INF;
            break;
        }
        if (a[l] < a[r]) {
            if (sum < a[l]) {
                pas[l] = true;
                if (pL == 0) pL = l;
                res += a[l] - sum;
                sum = a[l];
            }
            sum += a[l--];
        }
        else {
            if (sum < a[r]) {
                pas[r] = true;
                if (pR == n+n+1) pR = 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);
    ans = runs(ord[1].second); 
    for (int i = 1;i <= n+n;i++) {
        int x = ord[i].second;
        if (pas[x]) continue;
        if (pL <= x && x <= pR) continue;
        ans = min(ans, runs(x)); 
    }
    cout << ans;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4
10 20 15 1

output:

9

result:

ok single line: '9'

Test #2:

score: 0
Accepted
time: 33ms
memory: 28848kb

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: 23ms
memory: 28932kb

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: -100
Wrong Answer
time: 60ms
memory: 29196kb

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:

51795

result:

wrong answer 1st lines differ - expected: '13561', found: '51795'