結果

問題 No.2532 Want Play More
ユーザー konishikonishi
提出日時 2023-11-06 23:32:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,979 bytes
コンパイル時間 3,012 ms
コンパイル使用メモリ 253,272 KB
実行使用メモリ 37,588 KB
最終ジャッジ日時 2024-09-25 23:12:48
合計ジャッジ時間 7,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 230 ms
16,612 KB
testcase_02 AC 231 ms
16,588 KB
testcase_03 AC 221 ms
16,188 KB
testcase_04 AC 213 ms
16,072 KB
testcase_05 AC 211 ms
15,616 KB
testcase_06 AC 165 ms
37,588 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 88 ms
9,472 KB
testcase_11 AC 87 ms
9,344 KB
testcase_12 AC 155 ms
13,184 KB
testcase_13 AC 105 ms
10,624 KB
testcase_14 AC 31 ms
5,760 KB
testcase_15 AC 223 ms
16,508 KB
testcase_16 AC 194 ms
14,464 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 130 ms
12,032 KB
testcase_19 AC 186 ms
14,704 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 114 ms
17,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include<atcoder/all>
//using namespace atcoder;
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;

#define pii pair<int,int>
#define pll pair<ll,ll>

#define rep(i,num,n) for(int i=num;i<(int)(n);i++) //for_loop
#define REP(i,n) for(int i=0;i<(int)(n);i++)
#define rrep(i,num,n) for(int i=num-1;i>=(int)(n);i--) //reverse_for>
#define in(x,a,b) (a<=x && x<b)//範囲
#define reo return 0
#define all(v) v.begin(),v.end()

#define INFI 1010000000
#define INFL 4000000000000000000
//#define ten(x) ((int)1e##x)
//#define tenll(x) ((ll)1e##x)
#define PI 3.14159265358979
//#define mint modint1000000007
#define mint modint998244353

bool chmin(ll &a,ll b){if(a>b){a=b;return true;}return false;}
bool chmax(ll &a,ll b){if(a<b){a=b;return true;}return false;}
bool chmin(int &a,int b){if(a>b){a=b;return true;}return false;}
bool chmax(int &a,int b){if(a<b){a=b;return true;}return false;}

int dx[]={0,0,1,-1};int dy[]={1,-1,0,0};
//int dx[]={1,1,1,0,0,-1,-1,-1},dy[]={1,0,-1,1,-1,1,0,-1};
//----------------------------
int main(){
    int n;cin>>n;
    vector<vector<int>>g(n);
    rep(i,1,n){
    int a,b;
    cin>>a>>b;
    a--,b--;
    g[a].push_back(b);
    g[b].push_back(a);
    }
    vector<bool>used(n,false),used2(n,false);
    used[0]=used2[0]=true;
    vector<vector<int>>dp(2,vector<int>(n,-INFI));
    rep(i,0,n)dp[0][i]=INFI;
    //木DP
    auto dfs=[&](auto f,int pos)->int{

        bool leaf=false;
        int mi=INFI,ma=-INFI;
        for(auto to:g[pos]){
            if(used[to])continue;
            used[to]=true;
            leaf=true;
            f(f,to);//再帰
            chmin(dp[0][pos],dp[1][to]+1);
            chmax(dp[1][pos],dp[0][to]+1);
            
            
        }
        //ボトムケース
        if(!leaf){
            dp[0][pos]=dp[1][pos]=0;
        }
        return 0;
    };
    dfs(dfs,0);
    cout<<dp[1][0]<<endl<<dp[0][0]<<endl;
    reo;


}

0