QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#176781 | #7182. Very Sparse Table | ucup-team870 | AC ✓ | 451ms | 9376kb | C++17 | 2.4kb | 2023-09-12 00:36:42 | 2023-09-12 00:36:43 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define IOS {cin.tie(0);cout.tie(0);ios::sync_with_stdio(0);}
#define rep(i,j,k) for(int i=j;i<=k;++i)
#define Rep(i,j,k) for(int i=j;i<k;++i)
#define per(i,j,k) for(int i=j;i>=k;--i)
#define P pair<int,int>
#define ll long long
#define vi vector<int>
const int N=1e5;
array<int,3>eg[N*6]; int tot;
// map<P,bool>mp;
void addeg(int a,int b,int c){
// cout<<a<<" "<<b<<' '<<c<<endl;
// assert(mp.count({a,b}) && mp.count({b,c}));
// mp[{a,c}]=1;
eg[++tot]={a,b,c};
}
void dfs(int l,int r){
int len=r-l+1; if(len<=2)return;
int b=sqrt(len),cnt=len/b;
vector<P>vec(cnt+1);
rep(i,1,cnt-1)vec[i]={l+(i-1)*b,l+i*b-1};
vec[cnt]={l+(cnt-1)*b,r};
rep(i,1,cnt){
auto [l1,r1]=vec[i];
rep(j,l1+2,r1)addeg(l1,j-1,j);
per(j,r1-2,l1+1)addeg(j,j+1,r1);
}
rep(i,2,cnt-1){
if(vec[i].first!=vec[i].second) //wa了
addeg(vec[i].first,vec[i].second,vec[i+1].first);
}
rep(i,1,cnt){
rep(j,i+2,cnt){
addeg(vec[i].second,vec[j-1].first,vec[j].first);
}
}
rep(i,1,cnt)dfs(vec[i].first+1,vec[i].second-1);
}
int q[10],top;
void slv(int u,int v,int l,int r){
int len=r-l+1;
int b=sqrt(len),cnt=len/b;
vector<P>vec(cnt+1);
rep(i,1,cnt-1)vec[i]={l+(i-1)*b,l+i*b-1};
vec[cnt]={l+(cnt-1)*b,r};
auto inseg=[](int l,int r,int x){
return l<=x && x<=r;
};
rep(i,1,cnt){
auto [l1,r1]=vec[i];
if(inseg(l1,r1,u)){
top=0;
if(inseg(l1,r1,v)){
if(u==l1 || v==r1){
q[++top]=u,q[++top]=v;return;
}
return slv(u,v,l1+1,r1-1);
}
rep(j,i+1,cnt){
auto [l2,r2]=vec[j];
if(!inseg(l2,r2,v))continue;
q[++top]=u;
if(r1!=u)q[++top]=r1;
q[++top]=l2;
if(l2!=v)q[++top]=v;
return;
}
}
}
}
signed main(){
int n;cin>>n;
// rep(i,1,n)mp[{i-1,i}]=1;
dfs(0,n);
cout<<tot<<'\n';
assert(tot<=6*n);
rep(i,1,tot){
auto [a,b,c]=eg[i]; cout<<a<<" "<<b<<" "<<c<<'\n';
}
int Q;cin>>Q;
while(Q--){
int u,v;cin>>u>>v;
slv(u,v,0,n);
assert(top>=2 && top<=4);
rep(i,1,top)cout<<q[i]<<' '; cout<<endl;
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3472kb
input:
9 45 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 2 3 2 4 2 5 2 6 2 7 2 8 2 9 3 4 3 5 3 6 3 7 3 8 3 9 4 5 4 6 4 7 4 8 4 9 5 6 5 7 5 8 5 9 6 7 6 8 6 9 7 8 7 9 8 9
output:
7 0 1 2 3 4 5 6 7 8 6 8 9 7 8 9 3 5 6 2 3 6 0 1 0 2 0 2 3 0 2 3 4 0 2 3 5 0 2 6 0 2 6 7 0 2 6 8 0 2 6 9 1 2 1 2 3 1 2 3 4 1 2 3 5 1 2 6 1 2 6 7 1 2 6 8 1 2 6 9 2 3 2 3 4 2 3 5 2 6 2 6 7 2 6 8 2 6 9 3 4 3 5 3 5 6 3 5 6 7 3 5 6 8 3 5 6 9 4 5 4 5 6 4 5 6 7 4 5 6 8 4 5 ...
result:
ok edges: 7
Test #2:
score: 0
Accepted
time: 3ms
memory: 3456kb
input:
30 465 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 28 0 29 0 30 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 28 1 29 1 30 2 3 2 4 2 5 2 6...
output:
51 0 1 2 0 2 3 0 3 4 2 3 4 1 2 4 5 6 7 5 7 8 5 8 9 7 8 9 6 7 9 10 11 12 10 12 13 10 13 14 12 13 14 11 12 14 15 16 17 15 17 18 15 18 19 17 18 19 16 17 19 20 21 22 20 22 23 20 23 24 22 23 24 21 22 24 25 26 27 25 27 28 25 28 29 25 29 30 28 29 30 27 28 30 26 27 30 5 9 10 10 14 15 15 19 20 20 24 25 4 5 1...
result:
ok edges: 51
Test #3:
score: 0
Accepted
time: 310ms
memory: 3536kb
input:
736 200000 170 268 126 166 565 723 664 735 61 524 226 234 146 314 217 272 294 713 115 381 563 706 74 567 552 614 120 211 472 620 213 432 488 623 447 564 96 129 331 354 79 677 50 547 174 568 56 129 189 227 55 701 244 253 264 715 154 220 380 657 46 390 53 161 325 537 666 696 64 465 391 659 284 448 207...
output:
2760 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 7 8 0 8 9 0 9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 18 19 0 19 20 0 20 21 0 21 22 0 22 23 0 23 24 0 24 25 0 25 26 24 25 26 23 24 26 22 23 26 21 22 26 20 21 26 19 20 26 18 19 26 17 18 26 16 17 26 15 16 26 14 15 26 13 14 26 12 1...
result:
ok edges: 2760
Test #4:
score: 0
Accepted
time: 451ms
memory: 8744kb
input:
65536 200000 51949 58727 7943 43298 6290 7369 41493 53070 24229 36675 28087 49947 11703 48217 19923 24739 2144 59777 53830 56793 13509 37211 2300 38595 27415 42879 24616 48531 58341 63327 20628 38407 48616 60290 7450 61685 37010 47595 22164 42732 19181 29850 35383 43587 39257 44397 19340 45183 34523...
output:
355705 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 7 8 0 8 9 0 9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 18 19 0 19 20 0 20 21 0 21 22 0 22 23 0 23 24 0 24 25 0 25 26 0 26 27 0 27 28 0 28 29 0 29 30 0 30 31 0 31 32 0 32 33 0 33 34 0 34 35 0 35 36 0 36 37 0 37 38 0 38 39 0 39 4...
result:
ok edges: 355705
Test #5:
score: 0
Accepted
time: 0ms
memory: 3436kb
input:
0 0
output:
0
result:
ok edges: 0
Test #6:
score: 0
Accepted
time: 0ms
memory: 3492kb
input:
1 1 0 1
output:
0 0 1
result:
ok edges: 0
Test #7:
score: 0
Accepted
time: 0ms
memory: 3424kb
input:
2 3 0 1 0 2 1 2
output:
1 0 1 2 0 1 0 2 1 2
result:
ok edges: 1
Test #8:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
3 6 0 1 0 2 0 3 1 2 1 3 2 3
output:
0 0 1 0 1 2 0 1 2 3 1 2 1 2 3 2 3
result:
ok edges: 0
Test #9:
score: 0
Accepted
time: 391ms
memory: 8620kb
input:
65535 200000 35006 46944 17075 57351 24605 50445 5938 60705 15221 40233 28599 38915 1132 35574 8555 31494 13644 35806 44940 55401 9503 59206 21011 26540 41156 62487 57510 64305 9254 25610 17301 47249 34083 49167 48018 64394 38855 62175 15464 22525 23728 60275 54028 63810 22711 53902 5984 48625 5838 ...
output:
355711 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 7 8 0 8 9 0 9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 18 19 0 19 20 0 20 21 0 21 22 0 22 23 0 23 24 0 24 25 0 25 26 0 26 27 0 27 28 0 28 29 0 29 30 0 30 31 0 31 32 0 32 33 0 33 34 0 34 35 0 35 36 0 36 37 0 37 38 0 38 39 0 39 4...
result:
ok edges: 355711
Test #10:
score: 0
Accepted
time: 434ms
memory: 9376kb
input:
64800 200000 55124 62263 24992 39760 32262 37059 25987 42889 10413 64701 7223 43221 45810 63205 11437 29357 10814 52096 1154 36319 10730 54157 18473 26729 9152 23374 5426 12744 3502 37577 5559 37160 30503 62433 12426 47332 14933 62086 8781 21527 27180 53773 29658 46742 20592 61553 8337 27197 8024 38...
output:
351328 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 7 8 0 8 9 0 9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 18 19 0 19 20 0 20 21 0 21 22 0 22 23 0 23 24 0 24 25 0 25 26 0 26 27 0 27 28 0 28 29 0 29 30 0 30 31 0 31 32 0 32 33 0 33 34 0 34 35 0 35 36 0 36 37 0 37 38 0 38 39 0 39 4...
result:
ok edges: 351328
Extra Test:
score: 0
Extra Test Passed