結果
| 問題 |
No.771 しおり
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-05 01:44:55 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 189 ms / 2,000 ms |
| コード長 | 1,362 bytes |
| コンパイル時間 | 573 ms |
| コンパイル使用メモリ | 67,420 KB |
| 最終ジャッジ日時 | 2025-01-06 20:09:52 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 43 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:40:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
40 | scanf("%d",&V);
| ~~~~~^~~~~~~~~
main.cpp:44:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
44 | for(int i=0;i<V;i++)scanf("%d%d",&v[i].first,&v[i].second);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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));
}