# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
773260 |
2023-07-04T17:54:11 Z |
doowey |
Prize (CEOI22_prize) |
C++14 |
|
1020 ms |
192864 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define fi first
#define se second
#define mp make_pair
#define fastIO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
const int N = (int)1e6 + 10;
const int LOG = 20;
vector<int> nx[N];
vector<int> pik;
int par[N];
void dfs(int node){
pik.push_back(node);
for(auto x : nx[node]){
par[x]=node;
dfs(x);
}
}
vector<pii> E[N];
int up[LOG][N];
int dep[N];
int tin[N];
int tout[N];
int tt;
void dfs1(int node, int pa){
up[0][node]=pa;
tt++;
tin[node]=tt;
for(int ln = 1; ln < LOG; ln ++ ){
up[ln][node]=up[ln-1][up[ln-1][node]];
}
for(auto x : E[node]){
dep[x.fi]=dep[node]+x.se;
dfs1(x.fi, node);
}
tout[node]=tt;
}
bool is_anc(int u, int v){
return tin[u] <= tin[v] && tout[u] >= tout[v];
}
int lca(int u, int v){
if(is_anc(u,v)) return u;
for(int ln = LOG - 1; ln >= 0 ; ln -- ){
if(!is_anc(up[ln][u], v)) u = up[ln][u];
}
return up[0][u];
}
int main(){
//fastIO;
int n, k, q, t;
cin >> n >> k >> q >> t;
int p;
int root = -1;
for(int i = 1; i <= n; i ++ ) cin >> p;
for(int i = 1; i <= n; i ++ ){
cin >> p;
if(p == -1){
root = i;
}
else{
nx[p].push_back(i);
}
}
dfs(root);
while(pik.size() > k) pik.pop_back();
for(auto x : pik){
cout << x << " ";
}
cout << "\n";
fflush(stdout);
for(int i = 1; i < pik.size(); i ++ ){
cout << "? " << par[i] << " " << i << "\n";
}
cout << "!\n";
fflush(stdout);
int a, b, c, d;
for(int i = 1; i < pik.size(); i ++ ){
cin >> a >> b >> c >> d;
E[par[pik[i]]].push_back(mp(pik[i],b));
}
dfs1(root, root);
int u, v;
int sol;
vector<pii> qq;
for(int it = 1; it <= t; it ++ ){
cin >> u >> v;
qq.push_back(mp(u,v));
sol = dep[u] + dep[v] - 2 * dep[lca(u,v)];
//cout << sol << " " << sol << "\n";
}
for(auto x : qq){
sol = dep[x.fi] + dep[x.se] - 2 * dep[lca(x.fi,x.se)];
cout << sol << " " << sol << "\n";
}
fflush(stdout);
return 0;
}
Compilation message
Main.cpp: In function 'int main()':
Main.cpp:77:22: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
77 | while(pik.size() > k) pik.pop_back();
| ~~~~~~~~~~~^~~
Main.cpp:83:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
83 | for(int i = 1; i < pik.size(); i ++ ){
| ~~^~~~~~~~~~~~
Main.cpp:89:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
89 | for(int i = 1; i < pik.size(); i ++ ){
| ~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
432 ms |
90552 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
450 ms |
90508 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
420 ms |
106388 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1020 ms |
192864 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
912 ms |
133448 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |