結果

問題 No.845 最長の切符
ユーザー furafura
提出日時 2020-07-25 15:43:03
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 57 ms / 3,000 ms
コード長 574 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 193,604 KB
最終ジャッジ日時 2025-01-12 05:30:50
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,808 KB
testcase_01 AC 7 ms
7,808 KB
testcase_02 AC 5 ms
7,680 KB
testcase_03 AC 6 ms
7,808 KB
testcase_04 AC 6 ms
7,808 KB
testcase_05 AC 6 ms
7,808 KB
testcase_06 AC 6 ms
7,808 KB
testcase_07 AC 5 ms
7,808 KB
testcase_08 AC 6 ms
7,808 KB
testcase_09 AC 5 ms
7,808 KB
testcase_10 AC 6 ms
7,680 KB
testcase_11 AC 5 ms
7,808 KB
testcase_12 AC 6 ms
7,936 KB
testcase_13 AC 5 ms
7,936 KB
testcase_14 AC 6 ms
7,936 KB
testcase_15 AC 14 ms
7,808 KB
testcase_16 AC 37 ms
7,808 KB
testcase_17 AC 12 ms
7,808 KB
testcase_18 AC 22 ms
8,064 KB
testcase_19 AC 8 ms
7,936 KB
testcase_20 AC 45 ms
8,064 KB
testcase_21 AC 57 ms
7,808 KB
testcase_22 AC 12 ms
7,936 KB
testcase_23 AC 7 ms
7,808 KB
testcase_24 AC 38 ms
7,808 KB
testcase_25 AC 6 ms
7,808 KB
testcase_26 AC 37 ms
8,064 KB
testcase_27 AC 5 ms
7,936 KB
testcase_28 AC 46 ms
7,808 KB
testcase_29 AC 6 ms
7,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         int n,m; scanf("%d%d",&n,&m);
      |                  ~~~~~^~~~~~~~~~~~~~
main.cpp:12:33: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |                 int u,v,c; scanf("%d%d%d",&u,&v,&c); u--; v--;
      |                            ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n,m; scanf("%d%d",&n,&m);
	int d[16][16];
	memset(d,-1,sizeof d);
	rep(i,m){
		int u,v,c; scanf("%d%d%d",&u,&v,&c); u--; v--;
		d[u][v]=d[v][u]=max(d[u][v],c);
	}

	int dp[1<<16][16];
	memset(dp,-1,sizeof dp);
	rep(u,n) dp[1<<u][u]=0;
	rep(S,1<<n) rep(u,n) if(S>>u&1) {
		rep(v,n) if((S>>v&1)==0 && d[u][v]!=-1) {
			dp[S|1<<v][v]=max(dp[S|1<<v][v],dp[S][u]+d[u][v]);
		}
	}

	int ans=0;
	rep(S,1<<n) rep(u,n) ans=max(ans,dp[S][u]);
	printf("%d\n",ans);

	return 0;
}
0