結果

問題 No.771 しおり
ユーザー kmjpkmjp
提出日時 2018-12-18 23:07:47
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,214 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 159,664 KB
実行使用メモリ 21,976 KB
最終ジャッジ日時 2024-09-25 07:50:10
合計ジャッジ時間 16,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,785 ms
21,908 KB
testcase_01 AC 270 ms
21,764 KB
testcase_02 AC 23 ms
21,800 KB
testcase_03 AC 24 ms
21,928 KB
testcase_04 AC 26 ms
21,752 KB
testcase_05 AC 24 ms
21,748 KB
testcase_06 AC 23 ms
21,836 KB
testcase_07 AC 24 ms
21,788 KB
testcase_08 AC 25 ms
21,740 KB
testcase_09 AC 22 ms
21,728 KB
testcase_10 AC 22 ms
21,816 KB
testcase_11 AC 23 ms
21,784 KB
testcase_12 AC 23 ms
21,736 KB
testcase_13 AC 25 ms
21,744 KB
testcase_14 AC 28 ms
21,728 KB
testcase_15 AC 23 ms
21,740 KB
testcase_16 AC 23 ms
21,660 KB
testcase_17 AC 24 ms
21,704 KB
testcase_18 AC 23 ms
21,632 KB
testcase_19 AC 24 ms
21,728 KB
testcase_20 AC 23 ms
21,796 KB
testcase_21 AC 23 ms
21,756 KB
testcase_22 AC 25 ms
21,760 KB
testcase_23 AC 26 ms
21,684 KB
testcase_24 AC 25 ms
21,824 KB
testcase_25 AC 1,293 ms
21,784 KB
testcase_26 AC 50 ms
21,748 KB
testcase_27 AC 291 ms
21,740 KB
testcase_28 AC 659 ms
21,756 KB
testcase_29 AC 326 ms
21,764 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 102 ms
21,900 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 80 ms
21,772 KB
testcase_36 AC 33 ms
21,944 KB
testcase_37 AC 34 ms
21,936 KB
testcase_38 AC 86 ms
21,964 KB
testcase_39 AC 43 ms
21,852 KB
testcase_40 AC 1,100 ms
21,824 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 292 ms
21,932 KB
testcase_44 TLE -
testcase_45 AC 1,670 ms
21,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
int A[18],B[18];
int D[18][18];

int dp[1<<18][18];

int ok(int v) {
	ZERO(dp);
	int i,j;
	FOR(i,N) dp[1<<i][i]=1;
	for(int mask=0;mask<1<<N;mask++) {
		FOR(i,N) if(dp[mask][i]) {
			if(mask==(1<<N)-1) return 1;
			FOR(j,N) if((mask&(1<<j))==0 && D[i][j]<=v) {
				dp[mask^(1<<j)][j]=1;
			}
		}
	}
	return 0;
	
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) cin>>A[i]>>B[i];
	FOR(x,N) FOR(y,N) D[x][y]=B[x]-A[x]+A[y];
	
	int ret=1<<20;
	for(int i=19;i>=0;i--) if(ok(ret-(1<<i))) ret-=1<<i;
	cout<<ret<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0