日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

代码记录-连边树

發布時間:2023/12/19 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 代码记录-连边树 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

隊友給了一道題,不知道哪兒的,沒法驗題,先寫一版代碼占個坑,回頭驗了再改

#include<iostream> #include<algorithm> #include<stdio.h> #include<string> #include<string.h> #include<math.h> #define PI acos(-1) #define max(a, b) a > b ? a : b #define min(a, b) a < b ? a : b #define ios ios::sync_with_stdio(false) #define endl '\n' #define memset(a,b) memset(a, b, sizeof a) #define forr(i, l, r) for(int i = l; i <= r; i++) #pragma GCC optimize(2) typedef long long ll; typedef long double ld;using namespace std;const int N = 2e5 + 7; int n; int to[2 * N], nexto[2 * N], head[N], idx;void add(int a, int b) {to[idx] = b, nexto[idx] = head[a], head[a] = idx++;to[idx] = a, nexto[idx] = head[b], head[b] = idx++; }int dfs(int g, int d, int f) {if (nexto[head[g]] == -1 && to[head[g]] == f)return d;int res = d;for (int i = head[g]; ~i; i = nexto[i]) {int t = to[i];if (t != f)res += dfs(t, 1 - d, g);}return res; }int ans, js[2]; void writ(int g, int f, int d) {int k = 0;for (int i = head[g]; ~i; i = nexto[i]) {k++;int t = to[i];if (t != f) writ(t, g, 1 - d);}ans += js[d] - k; }int main() {ios;memset(head, -1);cin >> n;forr (i, 2, n) {int a, b;cin >> a >> b;add(a, b);}js[0] = dfs(1, 0, 0), js[1] = n - js[0];writ(1, 0, 0);cout << ans / 2 << endl;return 0; }

總結

以上是生活随笔為你收集整理的代码记录-连边树的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。