当前位置:网站首页>Sum of three terms (construction)
Sum of three terms (construction)
2022-07-05 06:16:00 【whitewall_ nine】
https://atcoder.jp/contests/arc135/tasks
#include<iostream>
#include<map>
#include<cstring>
using namespace std;
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,l,r) for(int i=(l);i>=(r);i--)
#define ll long long
#define pii pair<int, int>
#define mset(s,t) memset(s,t,sizeof(t))
#define mcpy(s,t) memcpy(s,t,sizeof(t))
#define fir first
#define pb push_back
#define sec second
#define sortall(x) sort((x).begin(),(x).end())
inline int read () {
int x = 0, f = 0;
char ch = getchar();
while (!isdigit(ch)) f |= (ch=='-'),ch= getchar();
while (isdigit(ch)) x = x * 10 + ch - '0', ch = getchar();
return f?-x:x;
}
template<typename T> void print(T x) {
if (x < 0) putchar('-'), x = -x;
if (x >= 10) print(x/10);
putchar(x % 10 + '0');
}
const int mod = 998244353;
const int N = 3e5 + 10;
int a[N];
int s[N];
int n;
void solve() {
cin >> n;
for (int i = 0; i< n; i ++) cin >> a[i];
int minvy = 0, minvx = 0;
// Negative numbers need not be considered , Because he was a positive number , It must be greater than or equal to 0 Conditions , Then we just need to find the smallest negative number
int maxx = 0x3f3f3f3f;
for (int i = 2; i< n + 2; i ++) {
s[i] = a[i - 2] - s[i - 1] - s[i - 2];
if (i % 3 == 0) {
minvy = max (minvy, -s[i]);
}
else if (i % 3 == 1) {
minvx = max(minvx, -s[i]);
}
else {
maxx = min(maxx, s[i]);
}
}
if (minvy + minvx > maxx) {
puts("No");
return ;
}
puts("Yes");
s[0] = minvy, s[1] = minvx;
for (int i = 2; i < n + 2; i ++)
s[i] = a[i - 2] - s[i - 1] - s[i - 2];
for (int i = 0; i < n + 2; i ++)
cout << s[i] << " \n"[i == n + 1];
}
int main () {
int t;
t = 1;
while (t --) solve();
return 0;
}
This problem is solved by finding the boundary range and then constructing a feasible solution . By simplifying the formula You can find i % 3 == 0 s[i] = x +a i % 3 == 1 s[i] = x + b i % 3== 2 s[i] = x - a - b We need to find out whether the limit conditions are feasible To this end, we construct c1, c2, c3 c1 <= a c2 <= b a + b <=c3 c1 + c2<= a + b <= c3 Maximum left , Take the minimum on the right and judge whether it meets the size relationship to judge whether it is feasible . If it is satisfied, just substitute the value directly
边栏推荐
- Leetcode divide and conquer / dichotomy
- 【Rust 笔记】15-字符串与文本(下)
- Redis publish subscribe command line implementation
- leetcode-6109:知道秘密的人数
- 阿里巴巴成立企业数智服务公司“瓴羊”,聚焦企业数字化增长
- leetcode-22:括号生成
- 阿里新成员「瓴羊」正式亮相,由阿里副总裁朋新宇带队,集结多个核心部门技术团队
- Golang uses context gracefully
- MySQL advanced part 2: SQL optimization
- MySQL怎么运行的系列(八)14张图说明白MySQL事务原子性和undo日志原理
猜你喜欢

MySQL advanced part 1: index

1.14 - 流水线

阿里巴巴成立企业数智服务公司“瓴羊”,聚焦企业数字化增长

4. Object mapping Mapster

SQLMAP使用教程(二)实战技巧一

Matrixdb V4.5.0 was launched with a new mars2 storage engine!

开源存储这么香,为何我们还要坚持自研?

leetcode-6110:网格图中递增路径的数目

7. Processing the input of multidimensional features

MySQL advanced part 2: optimizing SQL steps
随机推荐
1.14 - assembly line
leetcode-3:无重复字符的最长子串
阿里巴巴成立企业数智服务公司“瓴羊”,聚焦企业数字化增长
11-gorm-v2-03-basic query
CPU内核和逻辑处理器的区别
Data visualization chart summary (II)
Flutter Web 硬件键盘监听
884. Uncommon words in two sentences
[rust notes] 15 string and text (Part 1)
【Rust 笔记】13-迭代器(下)
数据可视化图表总结(二)
Sqlmap tutorial (1)
打印机脱机时一种容易被忽略的原因
Basic explanation of typescript
MySQL advanced part 2: SQL optimization
Dynamic planning solution ideas and summary (30000 words)
Redis publish subscribe command line implementation
一些工具的记录2022
Is it impossible for lamda to wake up?
LeetCode 0108.将有序数组转换为二叉搜索树 - 数组中值为根,中值左右分别为左右子树