QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#344458#8235. Top Clustermendicillin2#WA 1213ms73872kbC++172.9kb2024-03-04 16:39:132024-03-04 16:39:13

Judging History

你现在查看的是最新测评结果

  • [2024-03-04 16:39:13]
  • 评测
  • 测评结果:WA
  • 用时:1213ms
  • 内存:73872kb
  • [2024-03-04 16:39:13]
  • 提交

answer

#include<bits/stdc++.h>

#define F(i, j, k) for (int i = j; i <= k; i ++)
#define DF(i, j, k) for (int i = j; i >= k; i --)

using namespace std;

inline int read()
{
	int x=0,f=1;
	char c=getchar();
	while(c<'0' || c>'9')
	{
		if(c=='-') f=-1;
		c=getchar();
	}
	while(c>='0' && c<='9')
	{
		x=x*10+c-'0';
		c=getchar();
	}
	return x*f;
}

inline long long readlong() {
	long long x=0,f=1;
	char c=getchar();
	while(c<'0' || c>'9')
	{
		if(c=='-') f=-1;
		c=getchar();
	}
	while(c>='0' && c<='9')
	{
		x=x*10+c-'0';
		c=getchar();
	}
	return x*f;
}

const int N = 5e5 + 100;

struct wzy {
	int val, num;
} a[N];

inline bool cmp(wzy x, wzy y) {
	return x.val < y.val;
}

int cnt, head[N], nxt[N << 1], to[N << 1], val[N << 1];

inline void addedge(int x, int y, int w) {
	nxt[++cnt] = head[x];
	to[cnt] = y;
	val[cnt] = w;
	head[x] = cnt;
}

int n, fa[N][21], depth[N], lg[N];

long long di[N];

inline void dfs(int x) {
	for (int i = head[x]; i; i = nxt[i]) {
		if (to[i] == fa[x][0]) continue;
		fa[to[i]][0] = x;
		depth[to[i]] = depth[x] + 1;
		di[to[i]] = di[x] + val[i];
		dfs(to[i]);
	}
}

inline void prepare() {
	depth[1] = 1;
	dfs(1);
	F(i, 1, 20)
		F(j, 1, n)
			fa[j][i] = fa[fa[j][i - 1]][i - 1];
	lg[1] = 0;
	F(i, 2, n) lg[i] = lg[i >> 1] + 1;
}

inline int lca(int x, int y) {
	if (depth[y] > depth[x]) swap(x, y);
	DF(i, lg[depth[x] - depth[y]], 0)
		if (depth[fa[x][i]] >= depth[y]) x = fa[x][i];
	if (x == y) return x;
	DF(i, lg[depth[x]], 0)
		if (fa[x][i] != fa[y][i]) { x = fa[x][i]; y = fa[y][i]; }
	return fa[x][0];
}

inline long long dis(int x, int y) {
	return di[x] + di[y] - 2LL * di[lca(x, y)];
}

int X[N], Y[N];

int main()
{
	n = read();
	int Q = read();

	F(i, 1, n) {
		a[i].val = read();
		a[i].num = i;
	}
	sort(a + 1, a + n + 1, cmp);
	int ans = n, mx = n;
	F(i, 1, n)
		if (a[i].val != i - 1) {
			ans = i - 1;
			mx = i - 1;
		}
	F(i, 1, n - 1) {
		int x = read(), y = read(), w = read();
		addedge(x, y, w);
		addedge(y, x, w);
	}
	prepare();
	long long cur = 0;
	F(i, 1, mx) {
		if (i == 1) { X[i] = Y[i] = a[i].num; continue; }
		X[i] = X[i - 1];
		Y[i] = Y[i - 1];
		long long dis1 = dis(a[i].num, X[i - 1]), dis2 = dis(a[i].num, Y[i - 1]);
		if (dis1 > cur) {
			cur = dis1;
			X[i] = X[i - 1];
			Y[i] = a[i].num;
		}
		if (dis2 > cur) {
			cur = dis2;
			X[i] = a[i].num;
			Y[i] = Y[i - 1];
		}
	}
	while (Q --) {
		int x = read();
		long long k = readlong();
		int l = 1, r = mx, an = ans;
		while (l <= r) {
			int mid = (l + r) >> 1;
			//cout << Q << ": " << mid << ' ' << x << ' ' << X[mid] << ' ' << Y[mid] << ' ' << lca(x, X[mid]) << endl;
			if (dis(x, X[mid]) <= k && dis(x, Y[mid]) <= k) l = mid + 1;
			else { an = mid - 1; r = mid - 1; }
		}
		cout << an << '\n';
	}
 	return 0;
}
/*
5 4
3 9 0 1 2
1 2 10
3 1 4
3 4 3
3 5 2
3 0
1 0
4 6
4 7

*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 17952kb

input:

5 4
3 9 0 1 2
1 2 10
3 1 4
3 4 3
3 5 2
3 0
1 0
4 6
4 7

output:

1
0
3
4

result:

ok 4 number(s): "1 0 3 4"

Test #2:

score: -100
Wrong Answer
time: 1213ms
memory: 73872kb

input:

500000 500000
350828 420188 171646 209344 4 999941289 289054 79183 999948352 427544 160827 138994 192204 108365 99596 999987124 292578 2949 384841 269390 999920664 315611 163146 51795 265839 34188 999939494 145387 366234 86466 220368 357231 347706 332064 279036 173185 5901 217061 112848 37915 377359...

output:

0
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
499999
4999...

result:

wrong answer 2nd numbers differ - expected: '249999', found: '499999'