結果

問題 No.95 Alice and Graph
ユーザー kzyKTkzyKT
提出日時 2014-12-07 21:03:47
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,299 bytes
コンパイル時間 1,124 ms
コンパイル使用メモリ 146,880 KB
実行使用メモリ 12,064 KB
最終ジャッジ日時 2023-09-02 10:27:40
合計ジャッジ時間 13,681 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define all(c) (c).begin(),(c).end()
#define rrep(i,n) for(int i=(int)(n)-1;i>=0;i--)
#define REP(i,m,n) for(int i=(int)(m);i<(int)(n);i++)
#define rep(i,n) REP(i,0,n)
#define iter(c) __typeof((c).begin())
#define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++)
#define pb(a) push_back(a)
#define rd(a) cin>>(a)
#define RD(a,b) cin>>(a)>>(b)
#define pr(a) cout<<(a)<<endl
#define PR(a,b) cout<<(a)<<" "<<(b)<<endl
#define F first
#define S second
#define ll long long
bool check(int n,int m,int x,int y){return (x<0||x>=n||y<0||y>=m)?false:true;}
const ll MAX=1000000007,MAXL=1LL<<60,dx[4]={-1,0,1,0},dy[4]={0,-1,0,1};
typedef pair<int,int> P;

int n,m,k;
vector<int> v[100];
ll dp[100][20];

ll dfs(int now,int t,ll p) {
  if(t==k) {
    if(p&(1LL<<now)) return 0;
    else return (1LL<<(now-1))-1;
  }
  //if(dp[now][t]) return dp[now][t];
  ll ans=0;
  rep(i,v[now].size()) {
    ans=max(ans,dfs(v[now][i],t+1,p|(1LL<<now)));
  }
  dp[now][t]=ans;
  if(!(p&(1LL<<now))) dp[now][t]+=(1LL<<(now-1))-1;
  return dp[now][t];
}
int main() {
  cin >> n >> m >> k;
  rep(i,m) {
    int x,y;
    RD(x,y);
    v[x].pb(y);
    v[y].pb(x);
  }
  memset(dp,0,sizeof(dp));
  pr(dfs(1,0,0));
  return 0;
}
0