結果

問題 No.771 しおり
ユーザー cielciel
提出日時 2019-01-05 01:44:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 67,540 KB
実行使用メモリ 44,160 KB
最終ジャッジ日時 2024-07-22 07:10:30
合計ジャッジ時間 4,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
44,032 KB
testcase_01 AC 20 ms
8,320 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 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 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 87 ms
23,552 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 20 ms
8,192 KB
testcase_28 AC 45 ms
13,312 KB
testcase_29 AC 22 ms
8,320 KB
testcase_30 AC 204 ms
44,032 KB
testcase_31 AC 204 ms
44,160 KB
testcase_32 AC 6 ms
5,376 KB
testcase_33 AC 204 ms
44,160 KB
testcase_34 AC 203 ms
44,160 KB
testcase_35 AC 7 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 7 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 88 ms
23,552 KB
testcase_41 AC 202 ms
44,032 KB
testcase_42 AC 189 ms
44,160 KB
testcase_43 AC 22 ms
8,192 KB
testcase_44 AC 193 ms
44,160 KB
testcase_45 AC 198 ms
44,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <vector>
#include <set>
#include <stack>
#include <algorithm>

#define REP(i,n) for(int i=0;i<(int)n;++i)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();++i)
#define ALL(c) (c).begin(), (c).end()
#define INF 9999999
using namespace std;

typedef int Weight;
typedef vector<Weight> Array;
typedef vector<Array> Matrix;

const int M = 20;
Weight best[1<<M][M];
int    prev[1<<M][M];
void buildPath(int S, int i, vector<int> &path) {
  if (!S) return;
  buildPath(S^(1<<i), ::prev[S][i], path);
  path.push_back(i);
}
Weight shortestHamiltonPath(const Matrix &w, vector<int> &path) {
  int n=w.size();
  int N = 1 << n, K;
  REP(S,N) REP(i,n) best[S][i] = INF;
  REP(S,N) REP(i,n) if(S&1<<i) REP(j,n) if (!(S&(1<<j)))
    if (K=best[S][i]==INF ? w[i][j] : max(best[S][i],w[i][j]), best[S|(1<<j)][j] > K)
      best[S|(1<<j)][j] = K,
      ::prev[S|(1<<j)][j] = i;
  int t = min_element(best[N-1], best[N-1]+n) - best[N-1];
  //path.clear(); buildPath(N-1, t, path);
  return best[N-1][t];
}

int main(){
	int V,s,t,d;
	scanf("%d",&V);
	Matrix m(V,Array(V));
	{
		vector<pair<int,int> >v(V);
		for(int i=0;i<V;i++)scanf("%d%d",&v[i].first,&v[i].second);
		for(s=0;s<V;s++)for(t=0;t<V;t++)if(s!=t){
			m[s][t]=v[s].second-v[s].first+v[t].first;
		}
	}
	vector<int>path;
	printf("%d\n",shortestHamiltonPath(m,path));
}
0