Submission #865600


Source Code Expand

#include <cstdio>
#include <algorithm>

using namespace std;

const int MAXN = 2020;

using LL = long long;

LL arr[MAXN]; LL n, x;
LL jizz() {
    scanf("%lld%lld", &n, &x);
    for (int i = 0; i < n; ++i) scanf("%lld", &arr[i]);

    LL ans = 1LL<<62;

    LL cst[MAXN];
    for (int i = 0; i < n; ++i) cst[i] = arr[i];

    for (int i = 0; i < n; ++i) {
        LL c = x * i;
        for (int j = 0; j < n; ++j) c += cst[j];
        ans = min(c, ans);

        for (int j = 0; j < n; ++j)
            cst[j] = min(cst[j], arr[(j+n-i-1)%n]);
    }

    return ans;
}

int main() {
    printf("%lld\n", jizz());

    return 0;
}

Submission Info

Submission Time
Task B - Colorful Slimes
User lauzi
Language C++14 (GCC 5.4.1)
Score 400
Code Size 666 Byte
Status AC
Exec Time 75 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘LL jizz()’:
./Main.cpp:12:30: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld%lld", &n, &x);
                              ^
./Main.cpp:13:55: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     for (int i = 0; i < n; ++i) scanf("%lld", &arr[i]);
                                                       ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 21
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt
Case Name Status Exec Time Memory
0_00.txt AC 2 ms 128 KB
0_01.txt AC 2 ms 128 KB
0_02.txt AC 2 ms 128 KB
1_00.txt AC 75 ms 128 KB
1_01.txt AC 75 ms 128 KB
1_02.txt AC 75 ms 128 KB
1_03.txt AC 75 ms 128 KB
1_04.txt AC 75 ms 128 KB
1_05.txt AC 75 ms 128 KB
1_06.txt AC 75 ms 128 KB
1_07.txt AC 75 ms 128 KB
1_08.txt AC 75 ms 128 KB
1_09.txt AC 75 ms 128 KB
1_10.txt AC 56 ms 128 KB
1_11.txt AC 74 ms 128 KB
1_12.txt AC 68 ms 128 KB
1_13.txt AC 47 ms 128 KB
1_14.txt AC 74 ms 128 KB
1_15.txt AC 57 ms 128 KB
1_16.txt AC 65 ms 128 KB
1_17.txt AC 74 ms 128 KB