Submission #7384756
Source Code Expand
Copy
#include <bits/stdc++.h>
using namespace std;
struct Fast {
Fast() {
std::cin.tie(0);
ios::sync_with_stdio(false);
cout.precision(20);
}
} fast;
/* define */
#define FOR(I, X, Y) for (long long(I) = (X); (I) < (Y); (I)++)
#define REP(I, X, Y) for (long long(I) = (Y)-1; (I) >= (X); (I)--)
#define ALL(X) (X).begin(), (X).end()
#define pb push_back
#define COUNT(V, X) \
(upper_bound((V).begin(), (V).end(), X) - \
lower_bound((V).begin(), (V).end(), X))
#define debug(x) cerr << #x << ':' << x << endl;
#define DEBUG(v) \
{ \
cerr << #v << ':'; \
for (auto xv : v) cerr << xv << ' '; \
cerr << endl; \
}
#define Yes(X) cout << (X ? "Yes" : "No") << endl;
#define YES(X) cout << (X ? "YES" : "NO") << endl;
#define ctoi(C) (C - '0')
#define pow2(x) ((long long)((long long)1 << x))
/* alias */
using ll = long long;
using ld = long double;
using vi = vector<int>;
using vii = vector<vector<int>>;
using vl = vector<long long>;
using vll = vector<vector<long long>>;
using pi = pair<int, int>;
using pl = pair<long long, long long>;
template <typename T>
using PQ = priority_queue<T>;
template <typename T>
using minPQ = priority_queue<T, vector<T>, greater<T>>;
/* const */
const long long dx[] = {1, 0, -1, 0};
const long long dy[] = {0, 1, 0, -1};
const long long dx8[] = {1, 1, 0, -1, -1, -1, 0, 1};
const long long dy8[] = {0, 1, 1, 1, 0, -1, -1, -1};
const long long dx9[] = {1, 1, 0, -1, -1, -1, 0, 1, 0};
const long long dy9[] = {0, 1, 1, 1, 0, -1, -1, -1, 0};
const int INF = 1000000007;
const long long LINF = 1000000000000000007;
/* func */
template <typename T1, typename T2>
inline bool chmin(T1 &a, const T2 &b) {
if (a > b) a = b;
return a > b;
}
template <typename T1, typename T2>
inline bool chmax(T1 &a, const T2 &b) {
if (a < b) a = b;
return a < b;
}
long long max(long long x, int y) {
return max(x, (long long)y);
}
long long max(int x, long long y) {
return max((long long)x, y);
}
long long min(long long x, int y) {
return min(x, (long long)y);
}
long long min(int x, long long y) {
return min((long long)x, y);
}
/* library */
/* main */
signed main() {
ll N;
cin >> N;
ll ans[N];
FOR(i, 0, N) {
ans[i] = INF;
}
FOR(i, 0, N - 1) {
ll B;
cin >> B;
ans[i] = min(ans[i], B);
ans[i + 1] = min(ans[i + 1], B);
}
ll a = 0;
FOR(i, 0, N) {
a += ans[i];
}
cout << a << endl;
}
Submission Info
Submission Time |
|
Task |
C - Maximal Value |
User |
nu50218 |
Language |
C++14 (GCC 5.4.1) |
Score |
300 |
Code Size |
2730 Byte |
Status |
AC |
Exec Time |
1 ms |
Memory |
256 KB |
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
300 / 300 |
Status |
|
|
Set Name |
Test Cases |
Sample |
sample00, sample01, sample02 |
All |
handmade03, handmade04, handmade05, handmade06, handmade07, handmade08, handmade09, random10, random11, random12, random13, random14, sample00, sample01, sample02 |
Case Name |
Status |
Exec Time |
Memory |
handmade03 |
AC |
1 ms |
256 KB |
handmade04 |
AC |
1 ms |
256 KB |
handmade05 |
AC |
1 ms |
256 KB |
handmade06 |
AC |
1 ms |
256 KB |
handmade07 |
AC |
1 ms |
256 KB |
handmade08 |
AC |
1 ms |
256 KB |
handmade09 |
AC |
1 ms |
256 KB |
random10 |
AC |
1 ms |
256 KB |
random11 |
AC |
1 ms |
256 KB |
random12 |
AC |
1 ms |
256 KB |
random13 |
AC |
1 ms |
256 KB |
random14 |
AC |
1 ms |
256 KB |
sample00 |
AC |
1 ms |
256 KB |
sample01 |
AC |
1 ms |
256 KB |
sample02 |
AC |
1 ms |
256 KB |