Submission #865229


Source Code Expand

#include <cstdio>
#include <algorithm>
using namespace std;

typedef long long llong;

const int N = 2050;

llong A[N];
llong B[N];

const int inf = (int)1e9 + 42;

int main() {
    int n;
    scanf("%d", &n);
    llong x;
    scanf("%lld", &x);
    for (int i = 0; i < n; i++) {
        scanf("%lld", &A[i]);
    }
    for (int i = 0; i < n; i++) {
        B[i] = inf;
    }
    llong ans = (llong)1e18;
    for (int k = 0; k <= n; k++) {
        llong sum = k * x;
        for (int i = 0; i < n; i++) {
            sum += (B[i] = min(B[i], A[(i + n - k) % n]));
        }
        ans = min(ans, sum);
    }
    printf("%lld\n", ans);
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:16:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
./Main.cpp:18:22: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld", &x);
                      ^
./Main.cpp:20:29: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lld", &A[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 33 ms 128 KB
1_01.txt AC 33 ms 128 KB
1_02.txt AC 34 ms 128 KB
1_03.txt AC 34 ms 128 KB
1_04.txt AC 34 ms 128 KB
1_05.txt AC 34 ms 128 KB
1_06.txt AC 34 ms 128 KB
1_07.txt AC 35 ms 128 KB
1_08.txt AC 34 ms 128 KB
1_09.txt AC 34 ms 128 KB
1_10.txt AC 25 ms 128 KB
1_11.txt AC 33 ms 128 KB
1_12.txt AC 30 ms 128 KB
1_13.txt AC 21 ms 128 KB
1_14.txt AC 33 ms 128 KB
1_15.txt AC 26 ms 128 KB
1_16.txt AC 29 ms 128 KB
1_17.txt AC 33 ms 128 KB