結果

問題 No.771 しおり
ユーザー chocoruskchocorusk
提出日時 2018-12-18 23:20:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 96,120 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-07-22 07:05:16
合計ジャッジ時間 4,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
21,760 KB
testcase_01 AC 32 ms
21,760 KB
testcase_02 AC 16 ms
21,888 KB
testcase_03 AC 15 ms
21,632 KB
testcase_04 AC 15 ms
21,760 KB
testcase_05 AC 16 ms
21,760 KB
testcase_06 AC 15 ms
21,760 KB
testcase_07 AC 15 ms
21,760 KB
testcase_08 AC 16 ms
21,760 KB
testcase_09 AC 15 ms
21,888 KB
testcase_10 AC 15 ms
21,760 KB
testcase_11 AC 15 ms
21,888 KB
testcase_12 AC 15 ms
21,760 KB
testcase_13 AC 15 ms
21,760 KB
testcase_14 AC 15 ms
21,760 KB
testcase_15 AC 15 ms
21,760 KB
testcase_16 AC 15 ms
21,760 KB
testcase_17 AC 16 ms
21,888 KB
testcase_18 AC 15 ms
21,760 KB
testcase_19 AC 15 ms
21,888 KB
testcase_20 AC 15 ms
21,760 KB
testcase_21 AC 16 ms
21,760 KB
testcase_22 AC 15 ms
21,888 KB
testcase_23 AC 15 ms
21,632 KB
testcase_24 AC 15 ms
21,888 KB
testcase_25 AC 97 ms
21,760 KB
testcase_26 AC 17 ms
21,632 KB
testcase_27 AC 32 ms
21,760 KB
testcase_28 AC 52 ms
21,888 KB
testcase_29 AC 32 ms
21,888 KB
testcase_30 AC 197 ms
21,760 KB
testcase_31 AC 194 ms
21,888 KB
testcase_32 AC 19 ms
21,760 KB
testcase_33 AC 197 ms
21,888 KB
testcase_34 AC 195 ms
21,632 KB
testcase_35 AC 19 ms
21,888 KB
testcase_36 AC 16 ms
21,760 KB
testcase_37 AC 16 ms
21,760 KB
testcase_38 AC 18 ms
21,760 KB
testcase_39 AC 16 ms
21,760 KB
testcase_40 AC 97 ms
21,632 KB
testcase_41 AC 194 ms
21,888 KB
testcase_42 AC 194 ms
21,760 KB
testcase_43 AC 32 ms
21,760 KB
testcase_44 AC 193 ms
21,888 KB
testcase_45 AC 195 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int n;
	cin>>n;
	int a[18], b[18];
	for(int i=0; i<n; i++) cin>>a[i]>>b[i];
	int dp[18][1<<18];
	for(int i=0; i<n; i++){
		for(int j=0; j<(1<<n); j++){
			if(j==(1<<i)) dp[i][j]=0;
			else dp[i][j]=10000;
		}
	}
	for(int i=1; i<(1<<n); i++){
		for(int j=0; j<n; j++){
			if((i&(1<<j))==0) continue;
			for(int k=0; k<n; k++){
				if(((i-(1<<j))&(1<<k))==0) continue;
				dp[j][i]=min(dp[j][i], max(dp[k][i-(1<<j)], b[k]-a[k]+a[j]));
			}
		}
	}
	int ans=10000;
	for(int i=0; i<n; i++){
		ans=min(ans, dp[i][(1<<n)-1]);
	}
	cout<<ans<<endl;
	return 0;
}
0