Submission #616038


Source Code Expand

#include <iostream>
#include <iomanip>
#include <sstream>
#include <vector>
#include <string>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <stack>
#include <queue>
#include <deque>
#include <algorithm>
#include <functional>
#include <iterator>
#include <limits>
#include <numeric>
#include <utility>
#include <cmath>
#include <cassert>
#include <cstdio>

using namespace std; using namespace placeholders;

using LL = long long;
using ULL = unsigned long long;
using VI = vector< int >;
using VVI = vector< vector< int > >;
using VS = vector< string >;
using SS = stringstream;
using PII = pair< int, int >;
using VPII = vector< pair< int, int > >;
template < typename T = int > using VT = vector< T >;
template < typename T = int > using VVT = vector< vector< T > >;
template < typename T = int > using LIM = numeric_limits< T >;

template < typename T > inline istream& operator>>( istream &s, vector< T > &v ){ for ( T &t : v ) { s >> t; } return s; }
template < typename T > inline ostream& operator<<( ostream &s, const vector< T > &v ){ for ( int i = 0; i < int( v.size() ); ++i ){ s << ( " " + !i ) << v[i]; } return s; }
template < typename T > inline T fromString( const string &s ) { T res; istringstream iss( s ); iss >> res; return res; }
template < typename T > inline string toString( const T &a ) { ostringstream oss; oss << a; return oss.str(); }

#define REP2( i, n ) REP3( i, 0, n )
#define REP3( i, m, n ) for ( int i = ( int )( m ); i < ( int )( n ); ++i )
#define GET_REP( a, b, c, F, ... ) F
#define REP( ... ) GET_REP( __VA_ARGS__, REP3, REP2 )( __VA_ARGS__ )
#define FOR( e, c ) for ( auto &e : c )
#define ALL( c ) begin( c ), end( c )
#define AALL( a, t ) ( t* )a, ( t* )a + sizeof( a ) / sizeof( t )
#define DRANGE( c, p ) ( c ).begin(), ( c ).begin() + ( p ), ( c ).end()

#define SZ( v ) ( (int)( v ).size() )
#define EXIST( c, e ) ( ( c ).find( e ) != ( c ).end() )

template < typename T > inline void chmin( T &a, const T &b ){ a = std::min( a, b ); }
template < typename T > inline void chmax( T &a, const T &b ){ a = std::max( a, b ); }

#define PB push_back
#define EM emplace
#define EB emplace_back
#define BI back_inserter

#define MP make_pair
#define fst first
#define snd second

#define DUMP( x ) cerr << #x << " = " << ( x ) << endl

int main()
{
	cin.tie( 0 );
	ios::sync_with_stdio( false );

	int N;
	cin >> N;

	VI A( N - 1 );
	cin >> A;

	VI B( N, 1000000000 );
	REP( i, N - 1 )
	{
		chmin( B[i], A[i] );
		chmin( B[ i + 1 ], A[i] );
	}

	cout << B << endl;





	return 0;
}

Submission Info

Submission Time
Task B - 積み鉛筆
User torus711
Language C++11 (GCC 4.9.2)
Score 80
Code Size 2661 Byte
Status AC
Exec Time 62 ms
Memory 1572 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 80 / 80
Status
AC × 3
AC × 15
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All subtask0_0.txt, subtask0_1.txt, subtask0_10.txt, subtask0_11.txt, subtask0_12.txt, subtask0_13.txt, subtask0_14.txt, subtask0_2.txt, subtask0_3.txt, subtask0_4.txt, subtask0_5.txt, subtask0_6.txt, subtask0_7.txt, subtask0_8.txt, subtask0_9.txt
Case Name Status Exec Time Memory
sample1.txt AC 27 ms 800 KB
sample2.txt AC 26 ms 928 KB
sample3.txt AC 24 ms 924 KB
subtask0_0.txt AC 58 ms 1444 KB
subtask0_1.txt AC 55 ms 1488 KB
subtask0_10.txt AC 54 ms 1436 KB
subtask0_11.txt AC 56 ms 1508 KB
subtask0_12.txt AC 60 ms 1436 KB
subtask0_13.txt AC 55 ms 1564 KB
subtask0_14.txt AC 58 ms 1568 KB
subtask0_2.txt AC 49 ms 1444 KB
subtask0_3.txt AC 58 ms 1440 KB
subtask0_4.txt AC 57 ms 1564 KB
subtask0_5.txt AC 54 ms 1448 KB
subtask0_6.txt AC 54 ms 1444 KB
subtask0_7.txt AC 50 ms 1444 KB
subtask0_8.txt AC 56 ms 1452 KB
subtask0_9.txt AC 62 ms 1572 KB