QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#797050 | #9738. Make It Divisible | tilenn | TL | 1425ms | 17608kb | C++14 | 4.3kb | 2024-12-02 15:01:25 | 2024-12-02 15:01:26 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
typedef long long LL;
const int N = 1e5;
vector<int> primes;
vector<int> st(N + 1);
void init(){
for(int i = 2;i <= N;i++){
if(!st[i]){
st[i] = i;
primes.push_back(i);
}
for(auto j : primes){
if(i * j > N)break;
st[i * j] = j;
if(i % j == 0)break;
}
}
}
template<class T = int,class Cmp = std::less<T>>
struct RMQ{
const Cmp cmp = Cmp();
int n,lg;
vector<vector<T>> st;
RMQ(){}
RMQ(vector<T> &v){
init(v);
}
void init(vector<T> &v){
n = (int)v.size() - 1;
lg = __lg(n) + 1;
st.assign(lg,vector<T>(n + 1));
for(int i = 1;i <= n;i++)st[0][i] = v[i];
for(int i = 1;i < lg;i++){
for(int j = 1;j <= n;j++){
st[i][j] = min(st[i - 1][j],st[i - 1][min(j + (1 << i - 1),n)],cmp);
}
}
}
T operator()(int l,int r){
int t = __lg(r - l + 1);
return min(st[t][l],st[t][r - (1 << t) + 1],cmp);
}
};
template<class T,class Cmp>
struct ST{
const Cmp cmp = Cmp();
int n,lg;
vector<vector<T>> st;
ST(){}
ST(vector<T> &v){
init(v);
}
void init(vector<T> &v){
n = (int)v.size() - 1;
lg = __lg(n) + 1;
st.assign(lg,vector<T>(n + 1));
for(int i = 1;i <= n;i++)st[0][i] = v[i];
for(int i = 1;i < lg;i++){
for(int j = 1;j <= n;j++){
st[i][j] = cmp(st[i - 1][j],st[i - 1][min(j + (1 << i - 1),n)]);
}
}
}
T operator()(int l,int r){
int t = __lg(r - l + 1);
return cmp(st[t][l],st[t][r - (1 << t) + 1]);
}
};
template<class T>
struct Cmp{
T operator()(const T& x,const T& y)const{return __gcd(x,y);}
};
void solve(){
LL n,k;
cin >> n >> k;
vector<LL> a(n + 1);
vector<LL> d(n + 1);
for(int i = 1;i <= n;i++){
cin >> a[i];
d[i] = abs(a[i] - a[i - 1]);
}
if(count(a.begin() + 1,a.end(),a[1]) == n){
cout << k << " " << k * (k + 1) / 2 << endl;
return;
}
ST<LL,Cmp<LL>> f(d);
RMQ<LL,less<LL>> mi(a);
map<int,int> res;
auto work = [&](int l,int r,LL x)->void{
vector<pair<int,int>> w;
for(auto p : primes){
if(p > x)break;
if(x % p == 0){
int c = 0;
while(x % p == 0){
x /= p;
c++;
}
w.push_back({p,c});
}
if(x <= N)break;
}
if(x > 1 && x <= N){
while(x > 1){
int p = st[x],c = 0;
while(x % p == 0){
x /= p;
c++;
}
w.push_back({p,c});
}
}
if(x > 1)w.push_back({x,1});
int m = mi(l,r);
auto dfs = [&](auto self,int i,LL s)->void{
if(i == w.size()){
if(s > m && s - m <= k && (a[l] + s - m) % s == 0){
res[s - m]++;
}
return;
}
self(self,i + 1,s);
for(int j = 1;j <= w[i].second;j++){
s *= w[i].first;
self(self,i + 1,s);
}
};
dfs(dfs,0,1);
};
int c = 0;
for(int i = 1;i <= n;i++){
int p = i + 1,t = 0;
while(p <= n){
int l = p,r = n + 1;
while(l < r){
int mid = (l + r) >> 1;
if(f(i + 1,mid) == t)l = mid + 1;
else r = mid;
}
p = l;
if(p <= n){
t = f(i + 1,p);
work(i,p,t);
c++;
}
}
}
LL cnt = 0,s = 0;
for(auto it : res){
if(it.second == c){
cnt++;
s += it.first;
}
}
cout << cnt << " " << s << endl;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL),cout.tie(NULL);
init();
int t = 1;
cin >> t;
while(t--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3772kb
input:
3 5 10 7 79 1 7 1 2 1000000000 1 2 1 100 1000000000
output:
3 8 0 0 100 5050
result:
ok 3 lines
Test #2:
score: 0
Accepted
time: 1ms
memory: 3968kb
input:
4 201 1000000000 1 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5 2 5...
output:
0 0 0 0 0 0 0 0
result:
ok 4 lines
Test #3:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
500 4 1000000000 8 14 24 18 4 1000000000 17 10 18 14 4 1000000000 6 17 19 19 4 1000000000 15 14 15 25 4 1000000000 16 16 5 25 4 1000000000 4 30 20 5 4 1000000000 11 4 23 9 4 1000000000 14 25 13 2 4 1000000000 18 18 1 15 4 1000000000 22 22 22 28 4 1000000000 15 17 17 10 4 1000000000 22 14 13 25 4 100...
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok 500 lines
Test #4:
score: 0
Accepted
time: 43ms
memory: 17364kb
input:
1 50000 1000000000 230 286458 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 41263680 ...
output:
0 0
result:
ok single line: '0 0'
Test #5:
score: 0
Accepted
time: 34ms
memory: 17592kb
input:
1 50000 1000000000 12087 1196491 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 55314643 553146...
output:
0 0
result:
ok single line: '0 0'
Test #6:
score: 0
Accepted
time: 1399ms
memory: 17608kb
input:
1 50000 1000000000 2138984 42249920 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 358123541 3581...
output:
0 0
result:
ok single line: '0 0'
Test #7:
score: 0
Accepted
time: 111ms
memory: 3920kb
input:
500 39 1000000000 75 7 7 381 41 1197 177 177 41 109 109 16 1197 177 41 381 1605 381 381 7 177 177 177 177 177 177 177 177 7 7 143 143 143 143 143 653 143 823 7 61 1000000000 327 327 327 327 405153474 327 405153474 327 810306621 810306621 810306621 810306621 810306621 810306621 810306621 810306621 81...
output:
0 0 25 631568356 13 18925862 1 1 2 6878 1 2 1 1 2 10 1 1 1 110 0 0 1 36 11 4796 1 29 1 4 6 2209209 0 0 3 8 1 2 9 30770061 1000000000 500000000500000000 1 3 1000000000 500000000500000000 0 0 1 5 1 1 6 6615501 3 8233825 2 1035 2 4 7 1288 0 0 1 3 16 1617883221 2 10 0 0 1 5739 15 102584 3 1100 100000000...
result:
ok 500 lines
Test #8:
score: 0
Accepted
time: 219ms
memory: 4068kb
input:
50 794 1000000000 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 32994 ...
output:
4 13399 1 488 0 0 1 1 2 764 1 3762 2 3 1 4 3 704189325 1 1 7 226705168 7 2992 1 10 2 14 0 0 2 4136 1 1 5 1503264540 1 6 1 9 2 178 12 1965492 3 8622003 1 1 1 10 0 0 0 0 1 316605749 1 4 2 8 1 22 2 1452 0 0 1 47 1 1 3 11 7 709953544 20 10709552 3 8 1 3 19 84763135 2 1256 3 1268 29 1652299260 1 1 3 1124...
result:
ok 50 lines
Test #9:
score: 0
Accepted
time: 58ms
memory: 6176kb
input:
5 8181 1000000000 846711550 846711550 846711550 846711550 31870 169367806 169367806 169367806 169367806 169367806 169367806 169367806 169367806 169367806 169367806 169367806 31870 338703742 338703742 190 14224510 14224510 6526 6526 190 190 190 10 190 10 21214 21214 154 154 8578 10 190 10 10 82 3862 ...
output:
2 10 1 8 26 3610753 1 3 2 4
result:
ok 5 lines
Test #10:
score: 0
Accepted
time: 67ms
memory: 17392kb
input:
1 50000 1000000000 8376 1656 5016 20136 5016 1656 1656 1656 1656 1656 1656 1656 1656 1656 1656 16776 8376 50376 251976 1656 1656 10056 1656 1656 1656 1656 1656 1656 1656 1656 1656 1656 1656 5016 1656 3336 3336 3336 3336 3336 83976 16776 16776 16776 1656 536 1096 2216 1096 1096 67176 33576 5576 1096 ...
output:
1 24
result:
ok single line: '1 24'
Test #11:
score: 0
Accepted
time: 1425ms
memory: 17364kb
input:
1 50000 1000000000 91892194 394 137838094 394 137838094 137838094 394 183783994 394 183783994 183783994 183783994 183783994 394 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 45946294 394 137838094 137838094 137838094 394 91892194...
output:
468 209787236
result:
ok single line: '468 209787236'
Test #12:
score: 0
Accepted
time: 416ms
memory: 3904kb
input:
500 100 1000000000 776155459 776155459 776155459 776155459 41021059 776155459 41021059 776155459 776155459 41021059 41021059 776155459 776155459 41021059 776155459 41021059 776155459 776155459 41021059 41021059 776155459 776155459 776155459 41021059 41021059 41021059 41021059 41021059 776155459 7761...
output:
17 1831175377 2 609757842 3 743304987 25 2121624176 3 790868079 5 1008821895 7 1202438586 151 3383012928 9 1359636987 84 3044672451 3 640906041 2 612154014 7 1176943151 4 813243996 3 707197023 3 683983701 2 602690182 21 1974972192 12 1549491756 35 2391432666 3 794002920 3 764129706 3 748141920 14 16...
result:
ok 500 lines
Test #13:
score: 0
Accepted
time: 425ms
memory: 17544kb
input:
1 50000 1000000000 955233187 955233187 955233187 955233187 955233187 955233187 220098787 955233187 220098787 220098787 955233187 955233187 955233187 955233187 220098787 220098787 220098787 955233187 955233187 955233187 955233187 220098787 220098787 955233187 955233187 955233187 955233187 220098787 2...
output:
3 687450039
result:
ok single line: '3 687450039'
Test #14:
score: 0
Accepted
time: 218ms
memory: 17440kb
input:
1 50000 1000000000 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 134310915 1...
output:
5 1007002305
result:
ok single line: '5 1007002305'
Test #15:
score: 0
Accepted
time: 66ms
memory: 3912kb
input:
500 97 1000000000 25042703 12459791 12459791 25042703 1449743 270095 50208527 3022607 6168335 50208527 663311 25042703 12459791 6168335 270095 12459791 6168335 25042703 663311 25042703 663311 50208527 1449743 663311 3022607 25042703 663311 3022607 3022607 25042703 3022607 6168335 50208527 12459791 5...
output:
1 123121 1 887 1 58 1 250 1 11942 1 14 1 3847396 1 5 1 205464 1 3614 1 24 1 1 1 1502 1 192 1 82260 1 123682 1 8870816 1 98 1 8282 3 14951299 1 390417 1000000000 500000000500000000 1 47039 1000000000 500000000500000000 1000000000 500000000500000000 1 430 1 1291110 1 3198662 1 266092 1 634777 1 514615...
result:
ok 500 lines
Test #16:
score: 0
Accepted
time: 242ms
memory: 17380kb
input:
1 50000 1000000000 180207 22511 360431 5 11247 23068655 5 2799 159 335 90095 5615 1391 360431 1391 5767151 90095 180207 5 46137327 687 360431 180207 720879 159 720879 1441775 90095 687 5 2799 5767151 5767151 687 687 687 159 90095 45039 335 46137327 1441775 5767151 71 180207 11534319 1441775 11247 14...
output:
1 17
result:
ok single line: '1 17'
Test #17:
score: 0
Accepted
time: 21ms
memory: 17544kb
input:
1 50000 1000000000 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13...
output:
1 9
result:
ok single line: '1 9'
Test #18:
score: 0
Accepted
time: 86ms
memory: 3976kb
input:
500 74 1000000000 505612400 46447376 46447376 46447376 46447376 505612400 161238632 161238632 161238632 46447376 46447376 161238632 161238632 46447376 161238632 46447376 46447376 46447376 46447376 161238632 46447376 161238632 161238632 46447376 505612400 505612400 161238632 161238632 46447376 464473...
output:
1 10948252 2 290995083 1 12227 1 62646 1 456148 1 1606838 1 69009237 1 76066538 1 3945 1 10354 1 20996041 1 12594 1000000000 500000000500000000 1 1774442 1 230803 1 52 1 4 1 400 1 20840838 1 3155890 56 48210675 1 293 1 485 1 148108 1 947844 1 22565 1 15551 1 2058649 1 17 1 6744213 1 1961476 1 16914 ...
result:
ok 500 lines
Test #19:
score: 0
Accepted
time: 306ms
memory: 17460kb
input:
1 50000 1000000000 28697812 9565936 4372 52 86093440 86093440 16 774840976 13120 39364 3188644 118096 39364 774840976 1062880 13120 484 86093440 258280324 1062880 484 774840976 118096 52 484 1062880 28697812 16 258280324 39364 774840976 258280324 28697812 4372 484 774840976 9565936 4372 1062880 16 2...
output:
1 2
result:
ok single line: '1 2'
Test #20:
score: 0
Accepted
time: 22ms
memory: 17368kb
input:
1 50000 1000000000 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12...
output:
1 6
result:
ok single line: '1 6'
Test #21:
score: 0
Accepted
time: 17ms
memory: 17360kb
input:
1 50000 1000000000 278 20278 40278 60278 80278 100278 120278 140278 160278 180278 200278 220278 240278 260278 280278 300278 320278 340278 360278 380278 400278 420278 440278 460278 480278 500278 520278 540278 560278 580278 600278 620278 640278 660278 680278 700278 720278 740278 760278 780278 800278 8...
output:
0 0
result:
ok single line: '0 0'
Test #22:
score: 0
Accepted
time: 12ms
memory: 17440kb
input:
1 50000 1000000000 999994293 999974293 999954293 999934293 999914293 999894293 999874293 999854293 999834293 999814293 999794293 999774293 999754293 999734293 999714293 999694293 999674293 999654293 999634293 999614293 999594293 999574293 999554293 999534293 999514293 999494293 999474293 999454293 9...
output:
0 0
result:
ok single line: '0 0'
Test #23:
score: -100
Time Limit Exceeded
input:
1 50000 1000000000 2 735134402 2 735134402 2 735134402 2 2 735134402 2 2 735134402 2 735134402 2 735134402 735134402 2 735134402 735134402 735134402 735134402 735134402 2 735134402 735134402 2 735134402 735134402 735134402 735134402 2 2 2 735134402 2 735134402 735134402 735134402 735134402 2 2 73513...