Pathwalks CodeForces - 960F(主席树 || 树状数组)

Posted wtsruvf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pathwalks CodeForces - 960F(主席树 || 树状数组)相关的知识,希望对你有一定的参考价值。

题意:

  求树上最长上升路径

解析:

  树状数组版:

    edge[u][w] 代表以u为一条路的终点的小于w的最长路径的路的条数

·    那么edge[v][w] = max(edge[u][w-1]) + 1;

因为w最小是0  所以所有的w都+1

主席树版待定

#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e6+10, INF = 0x7fffffff;
int n, m, maxx = -INF;
map<int, int> edge[maxn];
int lowbit(int x)
{
    return x & -x;
}
int qp(int u, int w)
{
    int ret = 0;
    for(int i=w; i>0; i-=lowbit(i))
        ret = max(ret, edge[u][i]);
    return ret;
}

int build(int u, int w, int ans)
{
    while(w)
    {
        edge[u][w] = max(edge[u][w], ans);
        w += lowbit(w);
    }

}

int main()
{
    int u, v, w;
    cin >> n >> m;
    for(int i=0; i<m; i++)
    {
        cin >> u >> v >> w;
        maxx = max(maxx, w);
        build(v, +1, qp(u, w)+1);
    }
    int max_ret = -INF;
    for(int i=1; i<=n; i++)
        max_ret = max(max_ret, qp(i, 100001));
    cout << max_ret << endl;


    return 0;
}

 


以上是关于Pathwalks CodeForces - 960F(主席树 || 树状数组)的主要内容,如果未能解决你的问题,请参考以下文章

[CF960F] Pathwalks

[CF960F]Pathwalks

Codeforces 96C - Hockey

Codeforces 96A

Lucky Numbers (easy) CodeForces - 96B

codeforces 96A-C语言解题报告