QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#314932 | #7904. Rainbow Subarray | Decade | AC ✓ | 291ms | 30912kb | C++14 | 3.1kb | 2024-01-26 14:51:16 | 2024-06-09 00:01:56 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
typedef long long ull;
typedef unsigned long long uull;
typedef pair<int, int> PII;
mt19937 rnd1(random_device{}());
mt19937_64 rnd2(random_device{}());
uniform_int_distribution<int> dist1(0,2e18); //定义dist1为0——100的随机整数
uniform_real_distribution<double> dist2(-10,10); //定义dist2为-10——10的随机浮点数
//#define mp make_pair
//fflush(stdout);
inline void print(__int128 x){//输出模板
if(x<0){
putchar('-');
x=-x;
}
if(x>9) print(x/10);
putchar(x%10+'0');
}
inline int read()
{
int X = 0;
bool flag = 1;
char ch = getchar();
while (ch < '0' || ch > '9')
{
if (ch == '-')
flag = 0;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
X = (X << 1) + (X << 3) + ch - '0';
ch = getchar();
}
if (flag)
return X;
return ~(X - 1);
}
const ull mod = 998244353,INF = 2e18;
ull qpow(ull a, ull b)
{
ull res = 1;
a %= mod;
assert(b >= 0);
for (; b; b >>= 1)
{
if (b & 1)
res = res * a % mod;
a = a * a % mod;
}
return res;
}
inline int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); }
inline int lcm(int a, int b) { return a / gcd(a, b) * b; }
const int N = 500010,M = 200100;
int a[N];
multiset<int> q1,q2;
int sum1 = 0,sum2 = 0;
int check()
{
auto it = q2.begin();
int m = (int)*it;
if(q1.size()>=q2.size())
{
it = q1.end();
it--;
m = (int)*it;
q1.erase(it);
sum1 -= m;
q2.insert(m);
sum2 += m;
}
else if(q2.size()-q1.size()==3)
{
it = q2.begin();
m = (int)*it;
q1.insert(m);
sum1 += m;
q2.erase(it);
sum2 -= m;
m = (int)*q2.begin();
}
return m;
}
void solve()
{
sum1 = 0 ,sum2 = 0;
int n,k;
q1.clear(),q2.clear();
cin>>n>>k;
for(int i=1;i<=n;i++) cin>>a[i],a[i] -= i;
int l = 1,ans = 1;
q2.insert(a[1]);
sum2 = a[1];
for(int i=2;i<=n;i++)
{
int mid = check();
if(a[i]<mid) q1.insert(a[i]),sum1 += a[i];
else q2.insert(a[i]),sum2 += a[i];
mid = check();
int len = i-l+1;
if(mid*q1.size()-sum1+sum2-q2.size()*mid<=k) ans = max(ans,len);
else
{
while(1)
{
if(q1.find(a[l])!=q1.end())q1.erase(q1.find(a[l])),sum1 -= a[l];
else q2.erase(q2.find(a[l])),sum2 -= a[l];
mid = check();
l++;
len = i-l+1;
if(mid*q1.size()-sum1+sum2-q2.size()*mid<=k) break;
}
ans = max(ans,i-l+1);
}
}
cout<<ans<<endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t = 1;
cin>>t;
while (t--)
solve();
return 0;
}
这程序好像有点Bug,我给组数据试试?
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3832kb
input:
5 7 5 7 2 5 5 4 11 7 6 0 100 3 4 5 99 100 5 6 1 1 1 1 1 5 50 100 200 300 400 500 1 100 3
output:
4 3 5 1 1
result:
ok 5 lines
Test #2:
score: 0
Accepted
time: 135ms
memory: 6544kb
input:
11102 2 167959139 336470888 134074578 5 642802746 273386884 79721198 396628655 3722503 471207868 6 202647942 268792718 46761498 443917727 16843338 125908043 191952768 2 717268783 150414369 193319712 6 519096230 356168102 262263554 174936674 407246545 274667941 279198849 9 527268921 421436316 3613460...
output:
1 4 3 2 6 5 7 2 4 1 4 1 1 3 2 2 7 8 7 7 1 7 6 2 4 3 1 6 7 7 3 4 3 9 3 8 6 6 3 1 6 3 1 2 4 6 4 6 4 1 4 7 1 6 3 5 6 6 1 7 5 3 1 6 4 5 3 2 2 6 2 3 10 1 4 3 2 4 5 1 7 5 5 5 8 5 3 6 3 5 5 8 5 4 5 2 1 5 2 3 3 4 8 1 3 1 2 2 8 3 1 6 8 1 8 4 5 6 6 8 4 8 3 2 8 4 5 6 2 6 2 4 1 5 4 5 3 2 4 1 2 1 4 5 8 3 7 3 3 3...
result:
ok 11102 lines
Test #3:
score: 0
Accepted
time: 291ms
memory: 15840kb
input:
1 500000 17244641009859 54748096 75475634 204928248 276927808 84875072 103158867 27937890 322595515 186026685 45468307 69240390 139887597 188586447 373764525 121365644 310156469 185188306 60350786 211308832 384695957 370562147 208427221 35937909 267590963 126478310 275357775 55361535 335993561 36696...
output:
172998
result:
ok single line: '172998'
Test #4:
score: 0
Accepted
time: 289ms
memory: 15708kb
input:
1 500000 43483524125987 923264237 374288891 535590429 751244358 124321145 232930851 266089174 543529670 773363571 319728747 580543238 582720391 468188689 490702144 598813561 138628383 284660056 733781508 155605777 931759705 245485733 723534730 257812292 794937524 596788519 188451996 981010588 144836...
output:
174260
result:
ok single line: '174260'
Test #5:
score: 0
Accepted
time: 148ms
memory: 30912kb
input:
1 499999 62499749999 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081...
output:
499998
result:
ok single line: '499998'
Extra Test:
score: 0
Extra Test Passed