Submission #538620


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 PB push_back
#define EM emplace
#define EB emplace_back
#define BI back_inserter

#define EXIST( c, e ) ( ( c ).find( e ) != ( c ).end() )

#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, M, X, Y;
	cin >> N >> M >> X >> Y;

	VI A( N ), B( M );
	cin >> A >> B;

	int res = 0, t = 0;
	while ( true )
	{
		auto &ary = res % 2 ? B : A;

		auto pos = lower_bound( ALL( ary ), t );
		if ( pos == end( ary ) )
		{
			break;
		}

		t = *pos + ( res % 2 ? Y : X );
		++res;
	}

	cout << res / 2 << endl;

	return 0;
}

Submission Info

Submission Time
Task C - 飛行機乗り
User torus711
Language C++11 (GCC 4.9.2)
Score 100
Code Size 2632 Byte
Status AC
Exec Time 61 ms
Memory 1568 KB

Judge Result

Set Name Sample Subtask1 All
Score / Max Score 0 / 0 30 / 30 70 / 70
Status
AC × 3
AC × 18
AC × 33
Set Name Test Cases
Sample subtask0_sample_01.txt, subtask0_sample_02.txt, subtask0_sample_03.txt
Subtask1 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, subtask0_sample_01.txt, subtask0_sample_02.txt, subtask0_sample_03.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, subtask0_sample_01.txt, subtask0_sample_02.txt, subtask0_sample_03.txt, subtask1_0.txt, subtask1_1.txt, subtask1_10.txt, subtask1_11.txt, subtask1_12.txt, subtask1_13.txt, subtask1_14.txt, subtask1_2.txt, subtask1_3.txt, subtask1_4.txt, subtask1_5.txt, subtask1_6.txt, subtask1_7.txt, subtask1_8.txt, subtask1_9.txt
Case Name Status Exec Time Memory
subtask0_0.txt AC 54 ms 1560 KB
subtask0_1.txt AC 42 ms 1184 KB
subtask0_10.txt AC 43 ms 1308 KB
subtask0_11.txt AC 47 ms 1436 KB
subtask0_12.txt AC 47 ms 1568 KB
subtask0_13.txt AC 43 ms 1308 KB
subtask0_14.txt AC 47 ms 1560 KB
subtask0_2.txt AC 45 ms 1444 KB
subtask0_3.txt AC 46 ms 1308 KB
subtask0_4.txt AC 43 ms 1432 KB
subtask0_5.txt AC 39 ms 1300 KB
subtask0_6.txt AC 52 ms 1432 KB
subtask0_7.txt AC 45 ms 1360 KB
subtask0_8.txt AC 40 ms 1184 KB
subtask0_9.txt AC 52 ms 1468 KB
subtask0_sample_01.txt AC 26 ms 800 KB
subtask0_sample_02.txt AC 25 ms 928 KB
subtask0_sample_03.txt AC 25 ms 920 KB
subtask1_0.txt AC 61 ms 1568 KB
subtask1_1.txt AC 57 ms 1440 KB
subtask1_10.txt AC 47 ms 1240 KB
subtask1_11.txt AC 50 ms 1564 KB
subtask1_12.txt AC 60 ms 1440 KB
subtask1_13.txt AC 58 ms 1436 KB
subtask1_14.txt AC 49 ms 1316 KB
subtask1_2.txt AC 55 ms 1436 KB
subtask1_3.txt AC 59 ms 1320 KB
subtask1_4.txt AC 57 ms 1564 KB
subtask1_5.txt AC 51 ms 1564 KB
subtask1_6.txt AC 59 ms 1436 KB
subtask1_7.txt AC 56 ms 1436 KB
subtask1_8.txt AC 51 ms 1452 KB
subtask1_9.txt AC 61 ms 1568 KB