当前位置:网站首页>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
边栏推荐
- 4. Object mapping Mapster
- 打印机脱机时一种容易被忽略的原因
- CPU内核和逻辑处理器的区别
- 【LeetCode】Day94-重塑矩阵
- The sum of the unique elements of the daily question
- On the characteristics of technology entrepreneurs from Dijkstra's Turing Award speech
- Leetcode-6108: decrypt messages
- Daily question 2013 Detect square
- Erreur de connexion Navicat à la base de données Oracle Ora - 28547 ou Ora - 03135
- Currently clicked button and current mouse coordinates in QT judgment interface
猜你喜欢
LaMDA 不可能觉醒吗?
Leetcode stack related
Dynamic planning solution ideas and summary (30000 words)
Navicat连接Oracle数据库报错ORA-28547或ORA-03135
1.15 - 输入输出系统
Navicat連接Oracle數據庫報錯ORA-28547或ORA-03135
MySQL advanced part 2: MySQL architecture
WordPress switches the page, and the domain name changes back to the IP address
Spark中groupByKey() 和 reduceByKey() 和combineByKey()
1.13 - RISC/CISC
随机推荐
New title of module a of "PanYun Cup" secondary vocational network security skills competition
Flutter Web 硬件键盘监听
leetcode-6110:网格图中递增路径的数目
[rust notes] 17 concurrent (Part 2)
MySQL advanced part 2: SQL optimization
Appium自动化测试基础 — Appium测试环境搭建总结
【LeetCode】Day94-重塑矩阵
One question per day 2047 Number of valid words in the sentence
CPU内核和逻辑处理器的区别
Dynamic planning solution ideas and summary (30000 words)
Error ora-28547 or ora-03135 when Navicat connects to Oracle Database
Daily question 2013 Detect square
11-gorm-v2-03-basic query
leetcode-22:括号生成
Multi screen computer screenshots will cut off multiple screens, not only the current screen
QT判断界面当前点击的按钮和当前鼠标坐标
SPI details
LeetCode 0107. Sequence traversal of binary tree II - another method
Navicat连接Oracle数据库报错ORA-28547或ORA-03135
多屏电脑截屏会把多屏连着截下来,而不是只截当前屏