結果
問題 | No.134 走れ!サブロー君 |
ユーザー | 0w1 |
提出日時 | 2017-01-02 15:47:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,126 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 173,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 13:35:57 |
合計ジャッジ時間 | 2,854 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int X0, Y0; int N; vi X, Y; vd W; void init(){ cin >> X0 >> Y0; cin >> N; X = Y = vi( N ); W = vd( N ); for( int i = 0; i < N; ++i ){ cin >> X[ i ] >> Y[ i ] >> W[ i ]; } } const int MAXN = 13; double dp[ 1 << MAXN ][ MAXN ]; double eu_dis( double x, double y, double a, double b ){ double dx = x - a; double dy = y - b; return fabs( dx ) + fabs( dy ); } void preprocess(){ for( int i = 0; i < 1 << N; ++i ){ for( int j = 0; j < N; ++j ){ dp[ i ][ j ] = INF; } } for( int i = 0; i < N; ++i ){ int wsum = 0; for( int j = 0; j < N; ++j ){ wsum += W[ j ]; } dp[ 1 << i ][ i ] = eu_dis( X0, Y0, X[ i ], Y[ i ] ) * ( 1.0 * wsum + 100 ) / 120; } for( int s = 0; s < 1 << N; ++s ){ int wsum = 0; for( int i = 0; i < N; ++i ){ if( ~s & 1 << i ){ wsum += W[ i ]; } } for( int i = 0; i < N; ++i ){ if( s & 1 << i ){ // last for( int j = 0; j < N; ++j ){ if( ~s & 1 << j ){ // next upmin( dp[ s | 1 << j ][ j ], dp[ s ][ i ] + eu_dis( X[ i ], Y[ i ], X[ j ], Y[ j ] ) * ( 1.0 * wsum + 100 ) / 120 ); } } } } } } void solve(){ double ans = INF; for( int i = 0; i < N; ++i ){ upmin( ans, dp[ ( 1 << N ) - 1 ][ i ] + eu_dis( X0, Y0, X[ i ], Y[ i ] ) * 100.0 / 120 ); } for( int i = 0; i < N; ++i ){ ans += W[ i ]; } cout << fixed << setprecision( 8 ) << ans << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }