基本思路是将树形结构转换为线性结构。然后,所求即为一个区间内大于abi的最大的loy指向的ID。
将结点按照abi降序排序,注意abi可能相等。
然后,使用线段树单点更新,区间查询可解。

 /* 4366 */
#include <iostream>
#include <sstream>
#include <string>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <vector>
#include <deque>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstring>
#include <climits>
#include <cctype>
#include <cassert>
#include <functional>
#include <iterator>
#include <iomanip>
using namespace std;
//#pragma comment(linker,"/STACK:102400000,1024000") #define sti set<int>
#define stpii set<pair<int, int> >
#define mpii map<int,int>
#define vi vector<int>
#define pii pair<int,int>
#define vpii vector<pair<int,int> >
#define rep(i, a, n) for (int i=a;i<n;++i)
#define per(i, a, n) for (int i=n-1;i>=a;--i)
#define clr clear
#define pb push_back
#define mp make_pair
#define fir first
#define sec second
#define all(x) (x).begin(),(x).end()
#define SZ(x) ((int)(x).size())
#define lson l, mid, rt<<1
#define rson mid+1, r, rt<<1|1 typedef struct node_t {
int abi, id; friend bool operator< (const node_t& a, const node_t& b) {
return a.abi > b.abi;
} } node_t; typedef struct {
int v, nxt;
} edge_t; const int maxv = ;
const int maxn = ;
int abi[maxv], loy[maxv];
int head[maxv];
edge_t E[maxv];
int mx[maxn<<];
int ID[maxn<<];
int Beg[maxv], End[maxv], dfs_clock;
node_t nd[maxn];
int ans[maxn];
int n, m, l; void init() {
memset(head, -, sizeof(head));
l = dfs_clock = ;
} void addEdge(int u, int v) {
E[l].v = v;
E[l].nxt = head[u];
head[u] = l++;
} inline void PushUp(int rt) {
int lb = rt<<;
int rb = lb|; if (mx[lb] > mx[rb]) {
mx[rt] = mx[lb];
ID[rt] = ID[lb];
} else {
mx[rt] = mx[rb];
ID[rt] = ID[rb];
}
} void Build(int l, int r, int rt) {
mx[rt] = -;
if (l == r)
return ; int mid = (l + r) >> ;
Build(lson);
Build(rson); PushUp(rt);
} void Update(int x, int id, int val, int l, int r, int rt) {
if (l == r) {
mx[rt] = val;
ID[rt] = id;
return ;
} int mid = (l + r) >> ; if (x <= mid)
Update(x, id, val, lson);
else
Update(x, id, val, rson); PushUp(rt);
} pii Query(int L, int R, int l, int r, int rt) {
if (L==l && R==r) {
return mp(mx[rt], ID[rt]);
} int mid = (l + r) >> ; if (R <= mid) {
return Query(L, R, lson);
} else if (L > mid) {
return Query(L, R, rson);
} else {
pii ltmp = Query(L, mid, lson);
pii rtmp = Query(mid+, R, rson);
if (ltmp.fir > rtmp.fir)
return ltmp;
else
return rtmp;
}
} void dfs(int u) {
int v, k; Beg[u] = ++dfs_clock;
for (k=head[u]; k!=-; k=E[k].nxt) {
v = E[k].v;
dfs(v);
}
End[u] = dfs_clock;
} void solve() { dfs();
int nn = dfs_clock;
memset(mx, -, sizeof(mx)); rep(i, , n) {
nd[i-].abi = abi[i];
nd[i-].id = i;
} int mm = n - ;
sort(nd, nd+mm); int u;
pii p;
int i = ; while (i < mm) {
int j = i;
while (i<mm && nd[i].abi==nd[j].abi) {
u = nd[i].id;
int l = Beg[u]+;
int r = End[u];
if (l > r) {
ans[u] = -;
} else {
p = Query(l, r, , nn, );
ans[u] = p.fir==- ? -:p.sec;
}
++i;
} while (j < i) {
u = nd[j].id;
Update(Beg[u], u, loy[u], , nn, );
++j;
}
} while (m--) {
scanf("%d", &u);
printf("%d\n", ans[u]);
}
} int main() {
ios::sync_with_stdio(false);
#ifndef ONLINE_JUDGE
freopen("data.in", "r", stdin);
freopen("data.out", "w", stdout);
#endif int t;
int u; scanf("%d", &t);
while (t--) {
init();
scanf("%d %d", &n, &m);
rep(i, , n) {
scanf("%d %d %d", &u, &loy[i], &abi[i]);
addEdge(u, i);
}
solve();
} #ifndef ONLINE_JUDGE
printf("time = %d.\n", (int)clock());
#endif return ;
}

数据发生器。

 from copy import deepcopy
from random import randint, shuffle
import shutil
import string def GenDataIn():
with open("data.in", "w") as fout:
t = 10
fout.write("%d\n" % (t))
for tt in xrange(t):
n = randint(200, 300)
m = randint(200, 300)
fout.write("%d %d\n" % (n, m))
ust = [0]
st = set()
for i in xrange(1, n):
idx = randint(0, len(ust)-1)
a = ust[idx]
b = randint(0, 105)
while True:
c = randint(0, 10**6)
if c not in st:
break
st.add(c)
fout.write("%d %d %d\n" % (a, c, b))
ust.append(i)
L = []
for i in xrange(m):
x = randint(1, n-1)
L.append(x)
fout.write("\n".join(map(str, L)) + "\n") def MovDataIn():
desFileName = "F:\eclipse_prj\workspace\hdoj\data.in"
shutil.copyfile("data.in", desFileName) if __name__ == "__main__":
GenDataIn()
MovDataIn()

【HDOJ】4366 Successor的更多相关文章

  1. 【HDOJ】4729 An Easy Problem for Elfness

    其实是求树上的路径间的数据第K大的题目.果断主席树 + LCA.初始流量是这条路径上的最小值.若a<=b,显然直接为s->t建立pipe可以使流量最优:否则,对[0, 10**4]二分得到 ...

  2. 【HDOJ】【3506】Monkey Party

    DP/四边形不等式 裸题环形石子合并…… 拆环为链即可 //HDOJ 3506 #include<cmath> #include<vector> #include<cst ...

  3. 【HDOJ】【3516】Tree Construction

    DP/四边形不等式 这题跟石子合并有点像…… dp[i][j]为将第 i 个点开始的 j 个点合并的最小代价. 易知有 dp[i][j]=min{dp[i][j] , dp[i][k-i+1]+dp[ ...

  4. 【HDOJ】【3480】Division

    DP/四边形不等式 要求将一个可重集S分成M个子集,求子集的极差的平方和最小是多少…… 首先我们先将这N个数排序,容易想到每个自己都对应着这个有序数组中的一段……而不会是互相穿插着= =因为交换一下明 ...

  5. 【HDOJ】【2829】Lawrence

    DP/四边形不等式 做过POJ 1739 邮局那道题后就很容易写出动规方程: dp[i][j]=min{dp[i-1][k]+w[k+1][j]}(表示前 j 个点分成 i 块的最小代价) $w(l, ...

  6. 【HDOJ】【3415】Max Sum of Max-K-sub-sequence

    DP/单调队列优化 呃……环形链求最大k子段和. 首先拆环为链求前缀和…… 然后单调队列吧<_<,裸题没啥好说的…… WA:为毛手写队列就会挂,必须用STL的deque?(写挂自己弱……s ...

  7. 【HDOJ】【3530】Subsequence

    DP/单调队列优化 题解:http://www.cnblogs.com/yymore/archive/2011/06/22/2087553.html 引用: 首先我们要明确几件事情 1.假设我们现在知 ...

  8. 【HDOJ】【3068】最长回文

    Manacher算法 Manacher模板题…… //HDOJ 3068 #include<cstdio> #include<cstring> #include<cstd ...

  9. 【HDOJ】【1512】Monkey King

    数据结构/可并堆 啊……换换脑子就看了看数据结构……看了一下左偏树和斜堆,鉴于左偏树不像斜堆可能退化就写了个左偏树. 左偏树介绍:http://www.cnblogs.com/crazyac/arti ...

随机推荐

  1. 在.NET连接MySQL以及封装好的MySQLHelper.cs

    1.首先上MySQL网站下驱动:http://www.mysql.com/products/connector/ 2.安装下载的安装包 3.我们在Visual Studio里创建一个Web Appli ...

  2. .NET架构师技能体系

    .NET架构师应该掌握什么样的技术?其实这个问题很简单,去看看招聘.NET架构师的公司的职位要求就知道了.比如:http://www.cnblogs.com/guwei4037/p/5615471.h ...

  3. js文件内部导入引用js文件方法

    function include(path){      var a=document.createElement("script");     a.type = "te ...

  4. thymeleaf 内联语法

    十二. thymeleaf内联语法 内联:th:inline,值有三种:text,javascript,none 12.1 th:inline="text"文本内联 <p t ...

  5. PHPExcel读取excel03/07版到数组

    想总结下PHPExcel的读取excel到数组的function,用的时候直接调取,懒…… 参考了以下链接: http://www.jb51.net/article/29071.htm http:// ...

  6. PHP的$_SERVER['HTTP_HOST']获取服务器地址功能详解

    uchome的index文件中的二级域名功能判断,使用了php的$_SERVER['HTTP_HOST'],开始对这个不是很了解,所以百度了一下,发现一篇帖子有点意思,转发过来做个记录. 在php中, ...

  7. 【Python笔记】异常处理

    1 什么是异常 异常即是一个事件,该事件会在程序执行过程中发生,影响了程序的正常执行.一般情况下,在Python无法正常处理程序时就会发生一个异常.异常是Python对象,表示一个错误. 当Pytho ...

  8. C# 将Datatable作为参数,传入存储过程

    //创建一个静态方法 public static DataSet fnInsertSingleUser(DataTable v_dt, params string[] param) { try { S ...

  9. Import和SQL*Loader这2个工具的异同

    问:请讲述Import和SQL*Loader这2个工具的异同? 解答: 相同点:这两个ORACLE工具都是用来将数据导入数据库的. 区别是: IMPORT工具只能处理由另一个ORACLE工具EXPOR ...

  10. Kinetic使用注意点--group

    new Group(config) 参数: config:包含所有配置项的对象. { x: "横坐标", y: "纵坐标", width: "宽度&q ...