QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#795155 | #9543. Good Partitions | P-Bao | WA | 131ms | 12144kb | C++23 | 2.4kb | 2024-11-30 18:08:07 | 2024-11-30 18:08:12 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define int long long
#define mod 1000000007
using namespace std;
ll gcd(ll a, ll b) {
if(a < b) swap(a, b);
if (b == 0) return a;
return gcd(b, a % b);
}
ll it[800005];
ll uoc[200005];
ll a[200005];
void build(int index, int L, int R){
if(L == R){
it[index] = 0;
return;
}
else{
int mid = (L + R) / 2;
build(index * 2, L, mid);
build(index * 2 + 1, mid + 1, R);
it[index] = 0;
}
}
void update(int index, int L, int R, int u, int v, int val){
if(R < u || L > v) return;
if(u <= L && R <= v){
it[index] = val;
return;
}
int mid = (L + R) / 2;
update(index * 2, L, mid, u, v, val);
update(index * 2 + 1, mid + 1, R, u, v, val);
it[index] = gcd(it[index * 2], it[index * 2 + 1]);
}
ll get(int index, int L, int R, int l, int r){
if(R < l || L > r) return 0;
if(l <= L && R <= r) return it[index];
int mid = (L + R) / 2;
ll left = get(2*index, L, mid, l, r);
ll right = get(2*index + 1, mid + 1, R, l, r);
return gcd(left, right);
}
void solve(){
int n, q;
cin >> n >> q;
uoc[0] = n;
for(int i = 1; i <= n; i++){
cin >> a[i];
}
for(int i = 1; i < n; i++){
if(a[i] > a[i + 1]){
update(1, 1, n, i, i, i);
}
}
cout << uoc[it[1]] << endl;
while(q--){
int id, val;
cin >> id >> val;
if(id < n){
if(a[id] <= a[id+1] && val > a[id+1]){
update(1, 1, n, id, id, id);
}
if(a[id] > a[id + 1] && val <= a[id + 1]){
update(1, 1, n, id, id, 0);
}
}
if(id > 1){
if(a[id] >= a[id-1] && val < a[id-1]){
update(1, 1, n, id-1, id-1, id-1);
}
if(a[id] < a[id - 1] && val >= a[id - 1]){
update(1, 1, n, id-1, id-1, 0);
}
}
cout << uoc[it[1]] << endl;
a[id] =val;
}
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
for(int i = 1; i <= 200000; i++){
for(int j = i; j <= 200000; j += i){
uoc[j]++;
}
}
int t;
cin >> t;
while(t--){
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 3ms
memory: 5684kb
input:
1 5 2 4 3 2 6 1 2 5 3 5
output:
1 2 3
result:
ok 3 lines
Test #2:
score: 0
Accepted
time: 3ms
memory: 7808kb
input:
1 1 1 2000000000 1 1999999999
output:
1 1
result:
ok 2 lines
Test #3:
score: 0
Accepted
time: 111ms
memory: 9676kb
input:
1 200000 200000 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160...
result:
ok 200001 lines
Test #4:
score: 0
Accepted
time: 131ms
memory: 12144kb
input:
1 200000 200000 200001 200000 199999 199998 199997 199996 199995 199994 199993 199992 199991 199990 199989 199988 199987 199986 199985 199984 199983 199982 199981 199980 199979 199978 199977 199976 199975 199974 199973 199972 199971 199970 199969 199968 199967 199966 199965 199964 199963 199962 1999...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200001 lines
Test #5:
score: 0
Accepted
time: 51ms
memory: 11388kb
input:
1 200000 200000 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
result:
ok 200001 lines
Test #6:
score: 0
Accepted
time: 4ms
memory: 7680kb
input:
2 2 2 17017 63462 2 94054 2 13504 8 8 14380 5840 34752 73602 60279 26105 44308 78318 7 8597 2 70671 6 56663 5 90093 5 96853 3 10700 1 76875 6 27325
output:
2 2 1 1 1 1 1 1 1 1 1 1
result:
ok 12 lines
Test #7:
score: -100
Wrong Answer
time: 3ms
memory: 5888kb
input:
10 9 15 850456 510799 912572 938543 215712 758501 850577 149454 330027 7 740992 7 73826 1 993823 7 143019 8 152824 2 109975 5 151989 7 851016 3 157534 8 491512 6 987473 7 272348 3 842756 4 278214 5 707564 10 17 494099 922564 124251 422938 100551 915266 18436 74858 885629 897256 8 798574 7 49544 7 83...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
result:
wrong answer 17th lines differ - expected: '2', found: '1'