0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 18:08:47 +00:00
https://sjzezoj.com/submission/55682
This commit is contained in:
Baoshuo Ren 2022-08-25 20:46:19 +08:00
parent 2fcc1f4f10
commit 4ffc98b854
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
14 changed files with 110 additions and 0 deletions

71
S2OJ/1497/1497.cpp Normal file
View File

@ -0,0 +1,71 @@
#include <iostream>
#include <chrono>
#include <map>
#include <random>
#include <set>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e6 + 5;
int n, m, a, b, ans;
unsigned long long sum[N];
std::vector<std::pair<int, unsigned long long>> g[N];
std::map<int, unsigned long long> map;
std::set<unsigned long long> set;
void dfs(int u, int f, unsigned long long s) {
sum[u] = sum[f] ^ s;
for (auto e : g[u]) {
int v = e.first;
unsigned long long w = e.second;
if (v == f) continue;
dfs(v, u, w);
}
}
signed main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
std::mt19937_64 rand(std::chrono::system_clock::now().time_since_epoch().count());
cin >> n >> m;
for (int i = 1; i < n; i++) {
int u, v, w;
cin >> u >> v >> w;
if (!map.count(w)) map[w] = rand();
set.insert(map[w]);
g[u].emplace_back(v, map[w]);
g[v].emplace_back(u, map[w]);
}
dfs(1, 0, 0);
cin >> a >> b;
while (m--) {
int x = a % n + 1,
y = b % n + 1;
unsigned long long s = sum[x] ^ sum[y];
if (s == 0 || set.count(s)) ans++;
a = static_cast<long long>(a) * 666073 % 1000000007;
b = static_cast<long long>(b) * 233 % 998244353;
}
cout << ans << endl;
return 0;
}

BIN
S2OJ/1497/data/data1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/data6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1497/data/problem.conf (Stored with Git LFS) Normal file

Binary file not shown.