AtCoder Beginner Contest 375 省流版 A. 枚举所有子串判断即可 B. 模拟计算记录累加即可 C. 根据旋转的周期性对每个点旋转次数取模后暴力旋转即可 D. 枚举kk,考虑 i,ji,j的对数,写成数学表达式后维护个数和位置和即可 E. 背包问题,以前两个数组和为状态,考虑每个数移动到何处转移即可 F. 逆向,删边变加...
给出一个既包含大写字母,也包含小写字母的字符串(保证字符串长度为奇数),如果该字符串中大写字母较多,则将所有字母改为大写字母,否则,将所有字母改为小写字母。 分析 先统计大小写字母的数量,然后按题目要求操作即可。 代码 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N...
Panasonic Programming Contest 2024(AtCoder Beginner Contest 375) - AtCoderatcoder.jp/contests/abc375 2024/10/12 A. Seats 字符串模拟。 //A #include<bits/stdc++.h> using namespace std; int main(){ int n; string s; cin >> n >> s; int ans = 0; for ( int i = 1; i < ...
在这里,即使开始时没有足够的消毒剂给一个外星人的所有手消毒,他们也会用完剩余的消毒剂。 分析 直接模拟即可。 code cpp #include<bits/stdc++.h>usingnamespacestd;constintN=105;intn,m,ans;inth[N];intmain(){cin>>n>>m;for(inti=1;i<=n;i++){cin>>h[i];m-=h[i];if(m>=0) ans++;...
·AtCoder Beginner Contest (ABC) 这是最频繁且最简单的入门赛,通常情况下每月至少举行2次。2019年4月27日(含)之前,每场比赛共4题,时长100分钟,满分1000分且Rating超过1199的选手不计Rating值。自2019年5月19日起改版升级为6道题目,时长不变,满分2100分且Rating值超过1999的选手不计Rating值。改版之后比赛质量...
Atcoder Beginner Contest 335 讲解(A - F题) 蒟蒻小史 550 0 AtCoder Beginner Contest 369(A ~ G 题讲解) 蒟蒻小史 945 6 Atcoder Beginner Contest 339(A ~ G 讲解) 蒟蒻小史 498 0 AtCoder Beginner Contest 342(ABCDEFG) 蒟蒻小史 382 2 Atcoder Beginner Contest 340(A ~ F 讲解) 蒟蒻小...
[AtCoder Beginner Contest 365](https://atcoder.jp/contests/abc365) 题解 ABC365的比赛题解,我做出G题了,但暂时不发,需要的请私信 私信前请看:https://www.luogu.com.cn/paste/lowgb1lx ### A - Leap Year [翻](https://blog.csdn.net/qianzhima2012/article/details/141070004?spm=1001.2014.3001....
We will hold KEYENCE Programming Contest 2023 Autumn(AtCoder Beginner Contest 325). Contest URL:https://atcoder.jp/contests/abc325 Start Time:http://www.timeanddate.com/worldclock/fixedtime.html?iso=20231021T2100&p1=248 Duration: 100 minutes ...
AtCoder Beginner Contest 178 个人题解(C组合问题 + 快速幂,D规律,E数学公式变形),补题链接:HereA-NotEditorial给出\(x=1\)则输出0;给出\(x=0\)则输出1利用x^1可以快速实现\(x\)的转换B-ProductMax比较端点乘积的大小即可C-Ubiquity题解:输入一个N,\(0<=A_i
AtCoder Beginner Contest 173(E 思维模拟 F 容斥 思维题 ),题目链接自从第一次打了AT差一题AK,后面的AT总是差两题,唉。。好菜啊E-Multiplication4题意:给你n个数,要求选出k个值使得k个值得乘积最大。做法:记得做过类似得题,也是超出longlong求乘积最大,好像是用