結果
問題 | No.95 Alice and Graph |
ユーザー | kmjp |
提出日時 | 2014-12-07 22:24:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,501 bytes |
コンパイル時間 | 1,634 ms |
コンパイル使用メモリ | 162,820 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-11 17:42:58 |
合計ジャッジ時間 | 4,343 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 258 ms
12,048 KB |
testcase_02 | AC | 256 ms
12,160 KB |
testcase_03 | AC | 25 ms
12,056 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 250 ms
12,280 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
ソースコード
#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 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,M,K; int mat[100][100]; int dp[1<<17][17]; vector<int> V; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>M>>K; FOR(x,100) FOR(y,100) mat[x][y]=1000; FOR(x,100) mat[x][x]=0; FOR(i,M) { cin>>x>>y; mat[x-1][y-1]=mat[y-1][x-1]=1; } FOR(i,N) FOR(x,N) FOR(y,N) mat[x][y]=min(mat[x][y],mat[x][i]+mat[i][y]); V.push_back(0); int mask; for(i=N-1;i>0;i--) { if(V.size()>=K+1) break; V.push_back(i); memset(dp,0x3f,sizeof(dp)); dp[1][0]=0; for(mask=1;mask<1<<V.size();mask++) { FOR(x,N) if(mask & (1<<x)) { FOR(y,N) if(x!=y && (mask & (1<<y))) dp[mask][x] = min(dp[mask][x], dp[mask^(1<<x)][y]+mat[V[x]][V[y]]); } } int ok=0; FOR(j,V.size()) if(dp[(1<<V.size())-1][j]<=K) ok++; if(ok==0) V.pop_back(); } ll ret=0; FOR(i,V.size()) ret += (1LL<<V[i])-1; cout << ret << endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }