QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#111912 | #6405. Barkley | do_while_true | WA | 59ms | 12180kb | C++17 | 2.3kb | 2023-06-09 09:33:38 | 2023-06-09 09:33:42 |
Judging History
answer
#include<cstdio>
#include<vector>
#include<queue>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<ctime>
#include<random>
#include<assert.h>
#define pb emplace_back
#define mp make_pair
#define fi first
#define se second
#define dbg(x) cerr<<"In Line "<< __LINE__<<" the "<<#x<<" = "<<x<<'\n';
#define dpi(x,y) cerr<<"In Line "<<__LINE__<<" the "<<#x<<" = "<<x<<" ; "<<"the "<<#y<<" = "<<y<<'\n';
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef double ld;
typedef pair<int,int>pii;
typedef pair<ll,int>pli;
typedef pair<ll,ll>pll;
typedef pair<int,ll>pil;
typedef vector<int>vi;
typedef vector<ll>vll;
typedef vector<pii>vpii;
typedef vector<pll>vpll;
template<typename T>T cmax(T &x, T y){return x=x>y?x:y;}
template<typename T>T cmin(T &x, T y){return x=x<y?x:y;}
template<typename T>
T &read(T &r){
r=0;bool w=0;char ch=getchar();
while(ch<'0'||ch>'9')w=ch=='-'?1:0,ch=getchar();
while(ch>='0'&&ch<='9')r=r*10+(ch^48),ch=getchar();
return r=w?-r:r;
}
template<typename T1,typename... T2>
void read(T1 &x,T2& ...y){read(x);read(y...);}
const int N=100010;
ll gcd(ll a,ll b){
return !b?a:gcd(b,a%b);
}
int n,q;
ll a[N];
vpll suf[N];
signed main(){
#ifdef do_while_true
// assert(freopen("data.in","r",stdin));
// assert(freopen("data.in","w",stdout));
#endif
read(n,q);
for(int i=1;i<=n;i++)read(a[i]);
for(int i=n;i>=1;i--){
vpll t=suf[i+1];
t.pb(i,a[i]);
for(auto &[x,y]:t)y=gcd(y,a[i]);
for(int j=0;j<(int)t.size();j++)
if(j==(int)t.size()-1 || t[j].se!=t[j+1].se)
suf[i].pb(t[j]);
}
for(int i=1;i<=n;i++)reverse(suf[i].begin(),suf[i].end());
while(q--){
int l,r,k;read(l);read(r);read(k);
auto query=[&](int l,int r){
int s=0;
for(auto [x,y]:suf[l])
if(x<=r)s=y;
else break;
return s;
};
ll ans=0;
function<void(int,int,ll)>dfs=[&](int x,int ct,ll now){
if(x>r+1)return ;
if(x==r+1){
cmax(ans,now);
return ;
}
if(now&&now<=ans)return ;
cmax(ans,gcd(now,query(x,r)));
if(ct==k)return ;
for(auto [p,x]:suf[x]){
dfs(p+1,ct+1,now);
now=gcd(now,x);
}
};
dfs(l,0,0);
cout << ans << '\n';
}
#ifdef do_while_true
// cerr<<'\n'<<"Time:"<<1.0*clock()/CLOCKS_PER_SEC*1000<<" ms"<<'\n';
#endif
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 5660kb
input:
4 4 3 2 6 4 1 3 1 2 4 1 1 4 2 1 4 3
output:
3 2 3 6
result:
ok 4 number(s): "3 2 3 6"
Test #2:
score: 0
Accepted
time: 0ms
memory: 5672kb
input:
100 10000 7 25 33 17 13 33 24 29 11 1 3 19 2 20 33 23 14 24 15 12 3 1 5 13 6 35 15 21 10 34 31 19 7 33 17 26 26 1 19 21 31 5 29 20 18 32 19 18 19 31 11 26 6 19 2 26 23 1 4 2 31 21 29 30 1 14 20 23 14 32 4 34 13 29 5 26 24 29 28 5 26 26 21 19 2 33 2 31 30 3 23 24 26 32 36 21 21 11 5 9 56 57 1 90 97 1...
output:
26 1 1 1 1 1 1 1 31 1 1 1 1 1 26 1 1 1 1 1 1 29 1 1 1 1 1 1 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 21 1 1 1 1 1 19 1 1 1 21 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 4 1 1 1 1 1 3 1 2 1 26 1 1 1 1 1 1 1 7 1 1 1 33 1 1 1 1 1 1 2 1 26 1 1 1 2 1 1 1 1 1 1 26 1 1 1 1 31 1 1 2 1 4 29 1 2 1 1...
result:
ok 10000 numbers
Test #3:
score: 0
Accepted
time: 16ms
memory: 5800kb
input:
1000 66666 25 21 18 19 9 34 16 7 36 2 8 10 25 15 34 9 1 34 6 19 20 20 1 16 10 6 10 1 30 34 6 15 15 11 9 4 34 36 27 17 2 2 19 10 4 22 15 16 22 36 27 26 20 23 29 16 27 14 3 31 32 16 5 5 31 13 27 5 17 23 20 19 13 22 30 14 25 13 7 16 10 6 1 6 3 5 36 1 33 22 31 26 28 3 14 14 2 31 35 7 19 30 36 5 3 14 14 ...
output:
1 2 1 1 1 1 1 1 1 1 1 3 1 2 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 17 1 1 1 20 1 1 1 7 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 7 1 2 15 1 3 1 2 1 1 3 4 1 1 1 1 1 31 1 1 1 2 1 1 1 1 27 3 1 1 1 1 4 10 1 1 1 1 17 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 8 1 1 17 1 2 1 1 1 30 1 25 1 35 1...
result:
ok 66666 numbers
Test #4:
score: 0
Accepted
time: 13ms
memory: 6396kb
input:
10000 66666 35 30 29 34 3 25 23 29 30 32 34 1 25 1 23 11 10 24 33 25 14 1 16 25 33 5 19 2 16 1 19 14 34 6 26 25 36 35 1 32 35 27 18 3 7 16 10 25 6 21 36 31 24 17 20 12 30 21 25 31 27 22 5 19 6 16 7 26 15 21 32 11 34 4 7 25 34 3 14 13 10 1 28 8 12 24 34 27 17 8 17 32 23 30 23 8 19 22 2 11 23 10 4 30 ...
output:
1 16 2 2 1 23 1 1 1 2 1 3 5 1 1 2 1 1 1 1 30 1 1 1 3 18 1 1 1 1 2 1 1 1 1 1 1 1 1 2 2 1 6 36 1 1 2 19 2 1 1 1 1 1 2 1 1 1 21 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 29 1 1 30 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 1 1 1 2 29 1 1 14 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 3 1 9 5 1 2 2 1 32 1 1 1 3 2 1 1 ...
result:
ok 66666 numbers
Test #5:
score: 0
Accepted
time: 59ms
memory: 12180kb
input:
100000 66666 7 27 21 15 35 19 32 8 1 30 6 3 33 29 25 5 1 24 34 9 13 27 9 32 20 26 5 10 1 30 29 15 11 31 12 27 10 32 14 30 27 6 16 17 16 36 12 35 18 4 14 9 12 33 1 10 27 31 16 27 16 15 6 16 28 16 26 6 25 23 23 31 22 16 30 33 15 2 27 11 18 23 3 2 23 2 13 17 21 15 4 2 19 22 35 35 13 28 9 30 20 29 17 5 ...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 7 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 29 1 1 1 1 1 1 1 1 1 1 1 35 3 1 1 20 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 19 1 1 1 1 1 1 1 1 1 1 1 1 1 1 25 1 1 1 1 1 1 2 13 1 9 25 1 1 1 1 1 1 1 1 2 1 1 1 25 1 18 4 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 23 1 1 1 1 1 33 2...
result:
ok 66666 numbers
Test #6:
score: -100
Wrong Answer
time: 45ms
memory: 10920kb
input:
100000 66666 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 450283905890997363 45...
output:
1 3 1 9 1 1 1 1 1 1 1 1 1 3 1 1 1 1 9 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 3 1 1 1 1 9 1 1 1 1 3 1 1 1 1 1 3 1 1 1 1 1 1 1 9 1 3 1 1 1 1 3 9 9 1 1 1 3 9 1 1 1 1 1 1 1 9 9 9 9 1 1 1 1 1 1 3 9 1 1 1 1 1 1 1 3 1 1 3 1 1 1 9 3 9 1 1 1 1 1 1 1 3 1 1 3 9 1 1 1 1 1 1 1 1 1 1 ...
result:
wrong answer 1st numbers differ - expected: '450283905890997363', found: '1'