QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#646038#5076. Prof. Pang and AntsKevin5307WA 26ms3828kbC++232.5kb2024-10-16 21:02:032024-10-16 21:02:03

Judging History

你现在查看的是最新测评结果

  • [2024-10-16 21:02:03]
  • 评测
  • 测评结果:WA
  • 用时:26ms
  • 内存:3828kb
  • [2024-10-16 21:02:03]
  • 提交

answer

//Author: Kevin
#include<bits/stdc++.h>
//#pragma GCC optimize("O2")
using namespace std;
#define ll long long
#define ull unsigned ll
#define pb emplace_back
#define mp make_pair
#define ALL(x) (x).begin(),(x).end()
#define rALL(x) (x).rbegin(),(x).rend()
#define srt(x) sort(ALL(x))
#define rev(x) reverse(ALL(x))
#define rsrt(x) sort(rALL(x))
#define sz(x) (int)(x.size())
#define inf 0x3f3f3f3f
#define pii pair<int,int>
#define lb(v,x) (int)(lower_bound(ALL(v),x)-v.begin())
#define ub(v,x) (int)(upper_bound(ALL(v),x)-v.begin())
#define uni(v) v.resize(unique(ALL(v))-v.begin())
#define longer __int128_t
void die(string S){puts(S.c_str());exit(0);}
ll a[100100];
struct block
{
	ll A,B,M;
	block(){}
	block(ll _A,ll _B,ll _M):A(_A),B(_B),M(_M){};
	inline ll length(){return (B-A+1)*M;}
	inline ll lget(ll x){return (x-1)/M+A;};
	inline ll rget(ll x){return lget(length()-x+1);}
	inline ll lgetd(ll x){return (x-1)/M*M+M-(x-1);}
	inline ll rgetd(ll x){return lgetd(x);}
	inline ll lgetd2(ll x){return (x-1)-(x-1)/M*M+1;}
	inline ll rgetd2(ll x){return lgetd2(x);}
};
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t;
	cin>>t;
	while(t--)
	{
		int n;
		ll m;
		cin>>n>>m;
		for(int i=1;i<=n;i++)
		{
			cin>>a[i];
			a[i]++;
		}
		sort(a+1,a+n+1);
		vector<block> vec;
		for(int i=1;i<n;i++)
			if((a[i+1]-a[i])*i<=m)
			{
				vec.pb(a[i],a[i+1]-1,i);
				m-=(a[i+1]-a[i])*i;
			}
			else
			{
				if(m/i)
					vec.pb(a[i],a[i]+m/i-1,i);
				if(m%i)
					vec.pb(a[i]+m/i,a[i]+m/i,m%i);
				m=0;
			}
		if(m/n)
			vec.pb(a[n],a[n]+m/n-1,n);
		if(m%n)
			vec.pb(a[n]+m/n,a[n]+m/n,m%n);
		ll L=0,R=0;
		int lp=0,rp=sz(vec)-1;
		ll ans=0;
		while(lp<sz(vec))
		{
			if(L==vec[lp].length())
			{
				L=0;
				lp++;
				continue;
			}
			if(R==vec[rp].length())
			{
				R=0;
				rp--;
				continue;
			}
			ll len=min(vec[lp].length()-L,vec[rp].length()-R);
			// ...
			ans=max(ans,vec[lp].lget(L+1)+vec[rp].rget(R+1));
			ans=max(ans,vec[lp].lget(L+len)+vec[rp].rget(R+len));
			if(vec[lp].M>=vec[rp].M)
				if(vec[lp].lgetd(L+1)<vec[rp].rgetd(R+1)&&vec[lp].lgetd(L+1)<=len-1)
					ans=max(ans,vec[lp].lget(L+1)+vec[rp].rget(R+1)+1);
			if(vec[lp].M<=vec[rp].M)
				if(vec[lp].lgetd2(L+len)>vec[rp].rgetd2(R+len)&&vec[rp].rgetd2(R+len)<=len-1)
					ans=max(ans,vec[lp].lget(L+len)+vec[rp].rget(R+len)+1);
			L+=len;
			R+=len;
		}
		if(n==1) ans=max(ans,m+m);
		cout<<ans<<'\n';
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3640kb

input:

3
2 4
1 2
3 10
1 2 3
5 1
1 2 3 4 5

output:

6
9
4

result:

ok 3 number(s): "6 9 4"

Test #2:

score: 0
Accepted
time: 0ms
memory: 3468kb

input:

1
1 100000000000000
1000000000

output:

200000000000000

result:

ok 1 number(s): "200000000000000"

Test #3:

score: 0
Accepted
time: 0ms
memory: 3536kb

input:

1
10 1
1 1 1 1 1 1 1 1 1 1

output:

4

result:

ok 1 number(s): "4"

Test #4:

score: 0
Accepted
time: 17ms
memory: 3548kb

input:

100000
1 76
95
1 60
68
1 81
86
1 88
67
1 69
28
1 75
65
1 56
22
1 88
60
1 51
41
1 64
11
1 54
71
1 63
19
1 88
5
1 89
66
1 80
66
1 81
48
1 67
99
1 94
36
1 54
46
1 51
37
1 82
17
1 74
41
1 69
61
1 79
65
1 78
10
1 71
17
1 87
88
1 83
2
1 58
29
1 59
43
1 78
53
1 75
73
1 77
71
1 52
82
1 63
69
1 83
19
1 61
27...

output:

267
197
254
223
138
206
112
209
134
128
197
126
176
222
213
178
266
188
147
126
164
157
192
210
156
142
264
166
117
146
185
222
220
217
202
166
122
162
250
214
160
158
220
132
108
213
198
276
226
197
204
140
146
215
122
142
201
269
269
188
144
246
251
200
217
184
192
139
234
128
190
242
254
166
152
...

result:

ok 100000 numbers

Test #5:

score: -100
Wrong Answer
time: 26ms
memory: 3828kb

input:

100000
2 87
72 38
2 73
58 25
2 84
71 78
2 91
83 34
2 56
26 24
2 63
97 73
2 67
11 91
2 56
44 55
2 67
34 53
2 93
19 72
2 55
29 91
2 78
2 70
2 56
28 83
2 77
33 5
2 98
60 76
2 63
82 59
2 82
50 72
2 73
91 40
2 85
97 41
2 60
35 14
2 86
51 74
2 61
52 37
2 96
35 45
2 85
23 15
2 96
45 92
2 96
76 4
2 58
55 98...

output:

155
121
192
160
79
203
90
128
122
132
114
83
113
78
186
174
164
154
168
80
169
121
129
82
186
105
169
207
102
166
165
150
98
129
183
171
225
158
117
94
69
190
109
120
187
81
187
184
138
177
166
149
74
179
111
102
64
99
188
185
126
110
88
76
85
150
127
191
102
166
214
75
88
122
187
206
99
113
90
181
...

result:

wrong answer 7th numbers differ - expected: '114', found: '90'