CF - F. Eating Candies

#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
#include<vector>
#include<cmath>
#include<climits>
#include<algorithm>
#include<map>
#define ll long long
using namespace std;
typedef pair<int, int> PII;
const int N = 2e5 + 10;
long long a[N], b[N], c[N];
int main() {
	int t;
	cin >> t;
	while (t --) {
		int n;
		cin >> n;
		for(int i = 1; i <= n; i ++)cin >> a[i];
		c[n] = a[n];
		b[1] = a[1];
		for(int i = 2; i <= n; i ++)b[i] = a[i] + b[i - 1];
		for(int i = n - 1; i >= 1; i --)c[i] = c[i + 1] + a[i];
		
		long long mx = 0, mi = 0;
		for(int i = 1; i <= n; i ++)
		{
			int l = 1, r = n;
			while(l < r)
			{
				int m = (l + r + 1) / 2;
				if(c[m] >= b[i] )l = m;
				else r = m - 1;
			}
			if(c[l] == b[i])
			{
				if(l > i)
				{
					mi = i;
					mx = n - l + 1;
				}
			}
		}
		cout << mx + mi <<endl;
	}
	return 0;
}

因为前缀和数组边界问题wrong了3发,hh,真***,附上错误代码

#include<cstring>
#include<string>
#include<iostream>
#include<vector>
#include<cmath>
#include<climits>
#include<algorithm>
#include<map>
#define ll long long
using namespace std;
typedef pair<int, int> PII;
const int N = 2e5 + 10;
long long a[N], b[N], c[N];
int main() {
	int t;
	cin >> t;
	while (t --) {
		int n;
		cin >> n;
		for(int i = 1; i <= n; i ++)cin >> a[i];
		for(int i = 1; i <= n; i ++)b[i] = a[i] + b[i - 1];
		for(int i = n; i >= 1; i --)c[i] = c[i + 1] + a[i];
		long long mx = 0, mi = 0;
		for(int i = 1; i <= n; i ++)
		{
			int l = 1, r = n;
			while(l < r)
			{
				int m = (l + r) / 2;
				if(c[m] <= b[i] )r = m;
				else l = m + 1;
			}
			if(c[l] == b[i])
			{
				if(l > i)
				{
					mi = i;
					mx = n - l + 1;
				}
			}
		}
		cout << mx + mi <<endl;
	}
	return 0;
}
全部评论

相关推荐

尊嘟假嘟点击就送:加v细说,问题很大
点赞 评论 收藏
分享
霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务