結果

問題 No.1789 Tree Growing
ユーザー chocoruskchocorusk
提出日時 2021-12-14 02:19:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 614 ms / 5,000 ms
コード長 2,795 bytes
コンパイル時間 5,102 ms
コンパイル使用メモリ 284,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 00:31:35
合計ジャッジ時間 23,984 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 15 ms
6,944 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 17 ms
6,940 KB
testcase_21 AC 80 ms
6,944 KB
testcase_22 AC 41 ms
6,940 KB
testcase_23 AC 48 ms
6,940 KB
testcase_24 AC 45 ms
6,944 KB
testcase_25 AC 163 ms
6,940 KB
testcase_26 AC 153 ms
6,940 KB
testcase_27 AC 144 ms
6,940 KB
testcase_28 AC 142 ms
6,944 KB
testcase_29 AC 148 ms
6,940 KB
testcase_30 AC 218 ms
6,940 KB
testcase_31 AC 218 ms
6,944 KB
testcase_32 AC 223 ms
6,940 KB
testcase_33 AC 208 ms
6,940 KB
testcase_34 AC 262 ms
6,944 KB
testcase_35 AC 182 ms
6,940 KB
testcase_36 AC 250 ms
6,944 KB
testcase_37 AC 265 ms
6,940 KB
testcase_38 AC 258 ms
6,940 KB
testcase_39 AC 207 ms
6,940 KB
testcase_40 AC 247 ms
6,944 KB
testcase_41 AC 265 ms
6,944 KB
testcase_42 AC 305 ms
6,944 KB
testcase_43 AC 328 ms
6,940 KB
testcase_44 AC 310 ms
6,940 KB
testcase_45 AC 281 ms
6,944 KB
testcase_46 AC 338 ms
6,940 KB
testcase_47 AC 337 ms
6,940 KB
testcase_48 AC 353 ms
6,940 KB
testcase_49 AC 336 ms
6,944 KB
testcase_50 AC 356 ms
6,944 KB
testcase_51 AC 386 ms
6,940 KB
testcase_52 AC 335 ms
6,944 KB
testcase_53 AC 350 ms
6,940 KB
testcase_54 AC 290 ms
6,944 KB
testcase_55 AC 245 ms
6,940 KB
testcase_56 AC 306 ms
6,940 KB
testcase_57 AC 197 ms
6,944 KB
testcase_58 AC 287 ms
6,940 KB
testcase_59 AC 163 ms
6,944 KB
testcase_60 AC 354 ms
6,940 KB
testcase_61 AC 296 ms
6,940 KB
testcase_62 AC 414 ms
6,940 KB
testcase_63 AC 434 ms
6,944 KB
testcase_64 AC 225 ms
6,944 KB
testcase_65 AC 313 ms
6,944 KB
testcase_66 AC 224 ms
6,940 KB
testcase_67 AC 265 ms
6,944 KB
testcase_68 AC 290 ms
6,940 KB
testcase_69 AC 244 ms
6,940 KB
testcase_70 AC 237 ms
6,944 KB
testcase_71 AC 194 ms
6,940 KB
testcase_72 AC 614 ms
6,940 KB
testcase_73 AC 514 ms
6,940 KB
testcase_74 AC 159 ms
6,944 KB
testcase_75 AC 2 ms
6,944 KB
testcase_76 AC 2 ms
6,944 KB
testcase_77 AC 11 ms
6,940 KB
testcase_78 AC 12 ms
6,944 KB
testcase_79 AC 11 ms
6,940 KB
testcase_80 AC 390 ms
6,944 KB
testcase_81 AC 376 ms
6,944 KB
testcase_82 AC 368 ms
6,940 KB
testcase_83 AC 307 ms
6,944 KB
testcase_84 AC 298 ms
6,940 KB
testcase_85 AC 321 ms
6,940 KB
testcase_86 AC 323 ms
6,940 KB
testcase_87 AC 338 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
const int MAXN=100;
const int MAXK=100;
const int INF=1e6;
int n, k, vn[MAXN], vk[MAXK], ordn[MAXN], ordk[MAXK];;
vector<int> gn[MAXN], gk[MAXK];
int main()
{
    cin>>k;
	for(int i=0; i<k-1; i++){
        int a, b;
        cin>>a>>b;
        a--; b--;
        gk[a].push_back(b);
        gk[b].push_back(a);
    }
	cin>>n;
    for(int i=0; i<n-1; i++){
        int a, b;
        cin>>a>>b;
        a--; b--;
        gn[a].push_back(b);
        gn[b].push_back(a);
    }
    {
        queue<int> que;
        que.push(0);
        bool used[MAXK]={};
        used[0]=1;
        int t=0;
        while(!que.empty()){
            int x=que.front(); que.pop();
            ordk[x]=t;
            vk[t++]=x;
            for(auto y:gk[x]){
                if(used[y]) continue;
                que.push(y);
                used[y]=1;
            }
        }
    }
    int ans=-INF;
    for(int r=0; r<n; r++){
        queue<int> que;
        que.push(r);
        bool used[MAXN]={};
        used[r]=1;
        int t=0;
        while(!que.empty()){
            int x=que.front(); que.pop();
            ordn[x]=t;
            vn[t++]=x;
            for(auto y:gn[x]){
                if(used[y]) continue;
                que.push(y);
                used[y]=1;
            }
        }
        int dp[MAXN][MAXK];
        for(int i=0; i<n; i++) for(int j=0; j<k; j++) dp[i][j]=-INF;
        for(int i=n-1; i>=0; i--){
            for(int j=k-1; j>=0; j--){
                int x=vn[i], y=vk[j];
                for(auto z:gn[x]){
                    if(ordn[z]<ordn[x]) continue;
                    dp[i][j]=max(dp[i][j], dp[ordn[z]][j]+1);
                }
                int n1=gn[vn[i]].size(), k1=gk[vk[j]].size();
                if(i>0) n1--;
                if(j>0) k1--;
                if(k1>n1) continue;
				mcf_graph<int, int> g(k1+n1+2);
				int s=k1+n1, t=s+1;
				for(int l=0; l<k1; l++) g.add_edge(s, l, 1, 0);
				for(int l=0; l<n1; l++) g.add_edge(l+k1, t, 1, 0);
                int i1=0;
                for(auto z:gn[x]){
                    if(ordn[z]<ordn[x]) continue;
                    int j1=0;
                    for(auto w:gk[y]){
                        if(ordk[w]<ordk[y]) continue;
						if(dp[ordn[z]][ordk[w]]>=0) g.add_edge(j1, i1+k1, 1, INF-dp[ordn[z]][ordk[w]]);
						j1++;
                    }
                    i1++;
                }
                auto res=g.flow(s, t);
				if(res.first==k1){
					if(i==0 && j==0) ans=max(ans, INF*k1-res.second);
					dp[i][j]=max(dp[i][j], INF*k1-res.second);
                }
            }
        }
    }
	if(ans<0){
		cout<<-1<<endl;
		return 0;
	}
	ans+=k-1;
    cout<<ans<<endl;
    return 0;
}
0