結果
問題 | No.95 Alice and Graph |
ユーザー | yaoshimax |
提出日時 | 2015-03-08 15:49:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 494 ms / 5,000 ms |
コード長 | 1,707 bytes |
コンパイル時間 | 873 ms |
コンパイル使用メモリ | 88,812 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-11-14 13:32:06 |
合計ジャッジ時間 | 3,080 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 209 ms
7,424 KB |
testcase_01 | AC | 36 ms
7,552 KB |
testcase_02 | AC | 36 ms
7,424 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 231 ms
7,424 KB |
testcase_05 | AC | 190 ms
7,424 KB |
testcase_06 | AC | 205 ms
7,424 KB |
testcase_07 | AC | 36 ms
7,552 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 494 ms
7,424 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <cstring> using namespace std; int main(){ int N,M,K; cin >> N >> M >> K; int graph[N][N]; for( int i=0;i<N;i++)for(int j=0;j<N;j++) graph[i][j]=50000; for( int i = 0 ; i < M ; i++ ){ int u,v; cin>>u>>v; u--;v--; graph[u][v]=graph[v][u]=1; } for(int i=0;i<N;i++)for(int j=0;j<N;j++) for(int k=0;k<N;k++ ){ graph[j][k]=min(graph[j][i]+graph[i][k],graph[j][k]); } int stack[K+1]; stack[0]=0; int size=1; for( int n = N-1; n > 0 ; n-- ){ if(size>=K+1) break; stack[size]=n; size+=1; int dp[1<<size][size]; memset(dp,50000,sizeof(dp)); dp[1][0]=0; for( int m = 0 ; m<(1<<size); m++ ){ for(int s=0;s<size;s++ ){ if( (m&(1<<s))>0 && dp[m][s]<K){ for( int t=0; t<size; t++){ if( (m&(1<<t))==0 ){ dp[m|(1<<t)][t]=min(dp[m|(1<<t)][t],dp[m][s]+graph[stack[s]][stack[t]]); } } } } } bool ok = false; for( int e = 0 ; e < size; e++ ){ if( dp[(1<<size)-1][e] <= K){ ok=true; break; } } if( ok == false ){ size-=1; } } long long ans =0 ; for( int i = 0 ; i < size; i++ ){ ans += (1LL<<stack[i])-1; } cout << ans << endl; return 0; }