Submission #202513


Source Code Expand

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

using namespace std; using namespace placeholders;

using LL = long long;
using ULL = unsigned long long;
using VI = vector<int>;
using VVI = vector<VI>;
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 = VT< VT<T> >;
template < typename T = int > using LIM = numeric_limits<T>;

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 REP( i, m, n ) for ( int i = (int)( m ); i < (int)( n ); ++i )
#define FOR( e, c ) for ( auto &e : c )
#define ALL( c ) (c).begin(), (c).end()
#define AALL( a, t ) (t*)a, (t*)a + sizeof( a ) / sizeof( t )
#define DRANGE( c, p ) (c).begin(), (c).begin() + p, (c).end()

#define PB( n ) push_back( n )
#define MP( a, b ) make_pair( ( a ), ( b ) )
#define EXIST( c, e ) ( (c).find( e ) != (c).end() )

#define fst first
#define snd second

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

constexpr int INF = LIM<>::max () / 2;

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

	int n, m;
	cin >> n >> m;

	VVI G( n, VI( n, INF ) );
	REP( i, 0, m )
	{
		int a, b, t;
		cin >> a >> b >> t;
		a--, b--;

		G[a][b] = G[b][a] = t;
	}
	REP( i, 0, n )
	{
		G[i][i] = 0;
	}

	REP( k, 0, n )
	{
		REP( i, 0, n )
		{
			REP( j, 0, n )
			{
				G[i][j] = min( G[i][j], G[i][k] + G[k][j] );
			}
		}
	}

	int res = INF;
	FOR( row, G )
	{
		res = min( res, *max_element( ALL( row ) ) );
	}

	cout << res << endl;

	return 0;
}

Submission Info

Submission Time
Task D - バスと避けられない運命
User torus711
Language C++11 (GCC 4.8.1)
Score 100
Code Size 2103 Byte
Status AC
Exec Time 107 ms
Memory 1300 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 36
Set Name Test Cases
All test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt
Case Name Status Exec Time Memory
sample_01.txt AC 25 ms 948 KB
sample_02.txt AC 25 ms 1004 KB
sample_03.txt AC 24 ms 884 KB
test_01.txt AC 25 ms 872 KB
test_02.txt AC 92 ms 1264 KB
test_03.txt AC 107 ms 1260 KB
test_04.txt AC 47 ms 1008 KB
test_05.txt AC 50 ms 1012 KB
test_06.txt AC 27 ms 872 KB
test_07.txt AC 87 ms 1240 KB
test_08.txt AC 33 ms 940 KB
test_09.txt AC 46 ms 980 KB
test_10.txt AC 28 ms 924 KB
test_11.txt AC 27 ms 928 KB
test_12.txt AC 59 ms 1068 KB
test_13.txt AC 27 ms 916 KB
test_14.txt AC 29 ms 1000 KB
test_15.txt AC 80 ms 1112 KB
test_16.txt AC 29 ms 1004 KB
test_17.txt AC 44 ms 1012 KB
test_18.txt AC 56 ms 1136 KB
test_19.txt AC 30 ms 1048 KB
test_20.txt AC 29 ms 1048 KB
test_21.txt AC 24 ms 860 KB
test_22.txt AC 36 ms 988 KB
test_23.txt AC 24 ms 920 KB
test_24.txt AC 91 ms 1300 KB
test_25.txt AC 91 ms 1260 KB
test_26.txt AC 40 ms 1068 KB
test_27.txt AC 44 ms 1000 KB
test_28.txt AC 91 ms 1268 KB
test_29.txt AC 91 ms 1252 KB
test_30.txt AC 27 ms 936 KB
test_31.txt AC 23 ms 924 KB
test_32.txt AC 92 ms 1276 KB
test_33.txt AC 92 ms 1196 KB
test_34.txt AC 25 ms 924 KB
test_35.txt AC 36 ms 1004 KB
test_36.txt AC 91 ms 1244 KB