C - Same Integers

题解

要么三个都达到最大的数,要么三个都到达最大的数+1,判断是前一种情况的方法是不断垫高前两大的,看之后最小的那个和最大的那个差值是不是2的倍数

否则就是第二种情况

代码

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <vector>
//#define ivorysi
#define MAXN 100005
#define eps 1e-7
#define mo 974711
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
const int P = 100000;
int a[5];
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
for(int i = 1 ; i <= 3 ; ++i) scanf("%d",&a[i]);
sort(a + 1,a + 4);
if((a[3] - (a[1] + a[3] - a[2])) % 2 == 0) {
printf("%d\n",a[3] - a[2] + (a[3] - (a[1] + a[3] - a[2])) / 2);
}
else {
++a[3];++a[1];
if(a[2] < a[1]) swap(a[2],a[1]);
int cnt = 1 + a[3] - a[2] + (a[3] - (a[1] + a[3] - a[2])) / 2;
printf("%d\n",cnt);
}
}

D - Worst Case

题解

先二分一个答案,然后两两数乘积分个段的话是个二次函数,可以三分求极值

WA了无数次,我实在不知道段该怎么分,我把能分的部分都给取个max,然后过了

代码

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <vector>
//#define ivorysi
#define MAXN 100005
#define eps 1e-7
#define mo 974711
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
int64 A,B;
int Q;
int64 calc(int64 X,int64 MID) {
int64 s = MID,t = X - MID + 2;
if(s >= A) ++s;
if(t <= B) --t;
return s * t;
}
int64 get_Max(int64 X,int64 L,int64 R) {
while(R - L + 1 >= 3) {
int64 K = (R - L + 1) / 3;
int64 LB = L + K,RB = R - K;
if(calc(X,LB) < calc(X,RB)) L = LB;
else R = RB;
}
int64 ans = 0;
for(int64 i = L ; i <= R ; ++i) ans = max(ans,calc(X,i));
return ans;
}
int64 check(int64 MID) {
int64 res = 0;
res = max(get_Max(MID,1,A - 1),res);
res = max(get_Max(MID,MID - A + 2,MID),res);
res = max(get_Max(MID,1,B - 1),res);
res = max(get_Max(MID,MID - B + 2,MID),res);
res = max(get_Max(MID,A,B),res);
res = max(get_Max(MID,A,MID - B + 2),res);
res = max(get_Max(MID,B,MID - A + 2),res);
return res;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
scanf("%d",&Q);
while(Q--) {
scanf("%lld%lld",&A,&B);
if(A > B) swap(A,B);
int64 P = A * B;
int64 L = 0,R = (A + B);
while(L < R) {
int64 MID = (L + R + 1) >> 1;
if(check(MID) < P) L = MID;
else R = MID - 1;
}
printf("%lld\n",L);
}
}

E - Tozan and Gezan

题解

显然最后会Tozan最后不得不剩下一个A[i] > B[i]且B[i]最小的一块,这是最优的

求个和减去这个B[i]就行

如果都相等就是0

代码

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <vector>
//#define ivorysi
#define MAXN 200005
#define eps 1e-7
#define mo 974711
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
int64 A[MAXN],B[MAXN],sum;
int N;
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
scanf("%d",&N);
for(int i = 1 ; i <= N ; ++i) scanf("%lld%lld",&A[i],&B[i]);
int64 minn = 0x7fffffff;
for(int i = 1 ; i <= N ; ++i) {
sum += B[i];
if(B[i] < A[i]) minn = min(B[i],minn);
}
if(minn == 0x7fffffff) puts("0");
else printf("%lld\n",sum - minn);
}

F - Normalization

题解

如果s中每个数都相等,那么答案是1

如果s<=3暴搜

之后我们发现如果a = 0,b = 1,c = 2

那么变换后的串和原来的串总和是一样的

而且变换后的串里面一定有两个相邻数字是一样的

如何证明呢,我们把长度为4的情况暴搜一下,发现是对的,然后以后长度的情况就可以把第一个字符改成对的然后删掉第一个字符递归证明

然后用一个dp求出这样的串,同时若没有两个相邻数字是一样的,还要检查一下S本身是不是一个这样的串

代码

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <vector>
//#define ivorysi
#define MAXN 200005
#define eps 1e-7
#define mo 974711
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
const int64 MOD = 998244353;
int N;
char s[MAXN];
int64 dp[MAXN][3][3][2];
void inc(int64 &x,int64 y) {
x = x + y;
while(x >= MOD) x -= MOD;
} int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
scanf("%s",s + 1);
N = strlen(s + 1);
bool all_same = 1;
for(int i = 1 ; i <= N ; ++i) {
if(s[i] != s[1]) all_same = 0;
}
if(all_same) {puts("1");return 0;}
if(N > 3) {
for(int i = 0 ; i <= 2 ; ++i) dp[1][i][i][0] = 1;
for(int i = 2 ; i <= N ; ++i) {
for(int s = 0 ; s <= 2 ; ++s) {
for(int j = 0 ; j <= 2 ; ++j) {
for(int h = 0 ; h <= 2 ; ++h) {
for(int l = 0 ; l <= 1 ; ++l) {
inc(dp[i][(s + h) % 3][h][l || h == j],dp[i - 1][s][j][l]);
}
}
}
}
}
bool flag = 1;
int c = 0;
for(int i = 1 ; i <= N ; ++i) {
c = (c + s[i] - 'a') % 3;
}
for(int i = 2 ; i <= N ; ++i) {
if(s[i] == s[i - 1]) {flag = 0;break;}
}
int64 ans = flag;
for(int i = 0 ; i <= 2 ; ++i) ans += dp[N][c][i][1];
ans %= MOD;
printf("%lld\n",ans);
}
else {
if(N == 3) {
if(s[1] != s[2] && s[2] != s[3] && s[1] != s[3]) puts("3");
else if(s[1] == s[2] || s[2] == s[3]) puts("6");
else puts("7");
}
else if(N == 2) {
puts("2");
}
}
return 0;
}

【AtCoder】ARC094(C-F)题解的更多相关文章

  1. AtCoder Beginner Contest 238 A - F 题解

    AtCoder Beginner Contest 238 \(A - F\) 题解 A - Exponential or Quadratic 题意 判断 \(2^n > n^2\)是否成立? S ...

  2. AtCoder ExaWizards 2019 简要题解

    AtCoder ExaWizards 2019 简要题解 Tags:题解 link:https://atcoder.jp/contests/exawizards2019 很水的一场ARC啊,随随便便就 ...

  3. AtCoder Beginner Contest 154 题解

    人生第一场 AtCoder,纪念一下 话说年后的 AtCoder 比赛怎么这么少啊(大雾 AtCoder Beginner Contest 154 题解 A - Remaining Balls We ...

  4. AtCoder Beginner Contest 153 题解

    目录 AtCoder Beginner Contest 153 题解 A - Serval vs Monster 题意 做法 程序 B - Common Raccoon vs Monster 题意 做 ...

  5. AtCoder Beginner Contest 177 题解

    AtCoder Beginner Contest 177 题解 目录 AtCoder Beginner Contest 177 题解 A - Don't be late B - Substring C ...

  6. AtCoder Beginner Contest 184 题解

    AtCoder Beginner Contest 184 题解 目录 AtCoder Beginner Contest 184 题解 A - Determinant B - Quizzes C - S ...

  7. AtCoder Beginner Contest 173 题解

    AtCoder Beginner Contest 173 题解 目录 AtCoder Beginner Contest 173 题解 A - Payment B - Judge Status Summ ...

  8. AtCoder Beginner Contest 172 题解

    AtCoder Beginner Contest 172 题解 目录 AtCoder Beginner Contest 172 题解 A - Calc B - Minor Change C - Tsu ...

  9. AtCoder Beginner Contest 169 题解

    AtCoder Beginner Contest 169 题解 这场比赛比较简单,证明我没有咕咕咕的时候到了! A - Multiplication 1 没什么好说的,直接读入两个数输出乘积就好了. ...

  10. AtCoder Beginner Contest 148 题解

    目录 AtCoder Beginner Contest 148 题解 前言 A - Round One 题意 做法 程序 B - Strings with the Same Length 题意 做法 ...

随机推荐

  1. matlab和C语言实现最小二乘法

    参考:https://blog.csdn.net/zengxiantao1994/article/details/70210662 Matlab代码: N = ; x = [ ]; y = [ ]; ...

  2. Mac下Clang编译libcurl

    使用终端进入curl的根目录下,执行 ./configre CC=clang make make install 之后前往/usr/local/lib下生成了libcurl.a和相应的动态库,头文件在 ...

  3. 科学计算三维可视化---Mayavi可视化实例

    一:Dragon绘制实例(三维扫描的绘制) 三维扫描主要用于对物体空间外形结构以及色彩进行扫描,用以获得物体表面的空间坐标, 他的主要意义在于能够将实物的立体信息转换为计算机能够直接处理的数据信号,为 ...

  4. mongo转换副本集

    本文介绍如何把独立的mongo实例转换成包含3个成员的副本集.开发和测试使用独立实例,生产使用副本集.如何安装独立的mongo实例本文不再赘述. 如果在部署副本集时还没有安装mongo实例,可以查看部 ...

  5. bzoj千题计划152:bzoj3405: [Usaco2009 Open]Grazing2 移动牛棚

    http://www.lydsy.com/JudgeOnline/problem.php?id=3405 n个牛棚,n-1段 因为要求距离尽量大,而且尽可能多的为d 所以: 第1个牛棚一定在位置1 最 ...

  6. CF&&CC百套计划3 Codeforces Round #204 (Div. 1) A. Jeff and Rounding

    http://codeforces.com/problemset/problem/351/A 题意: 2*n个数,选n个数上取整,n个数下取整 最小化 abs(取整之后数的和-原来数的和) 先使所有的 ...

  7. zz 启动Matlab提示Microsoft Visual C++ 2005 Redistributable存在问题问题

    帮助领导搞Matlab 2010a 绿色版; 领导把绿色版的文件夹挪了一下位置 (领导就是领导,做什么都按照自己的想当然的想法做) 然后, 脆弱的绿色版Matlab 2010a Portable就罢工 ...

  8. Machine Learning Trick of the Day (2): Gaussian Integral Trick

    Machine Learning Trick of the Day (2): Gaussian Integral Trick Today's trick, the Gaussian integral ...

  9. Java并发编程原理与实战二十六:闭锁 CountDownLatch

    关于闭锁 CountDownLatch 之前在网上看到过一篇举例非常形象的例子,但不记得是出自哪里了,所以这里就当自己再重新写一篇吧: 例子如下: 我们每天起早贪黑的上班,父母每天也要上班,有一天定了 ...

  10. vbs 解析 json jsonp 方法

    昨天说了下用 htmlfile 来解析 html,今天依然用他来解析,htmlfile 是一个 COM 版的 BOM 和 DOM,所以解析 html, 执行 js 完全不在话下,今天就继续解析 jso ...