当前位置:网站首页>Educational Codeforces Round 122 (Rated for Div. 2) ABC
Educational Codeforces Round 122 (Rated for Div. 2) ABC
2022-07-05 01:37:00 【Vijurria】
The main idea of the topic : Put an integer n, Change its lowest digit to make it 7 Multiple .
Note that the need cannot contain a preamble 0.
input
3 42 23 377output
42 28 777
Directly control its lowest position without crossing the boundary .
#include<iostream>
#include<cmath>
#include<string>
#include<cstring>
#include<cstdlib>
#include<algorithm>
using namespace std;
int main()
{
cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
int t,n,m;
cin>>t;
while(t--)
{
int n;
cin>>n;
if(n%7==0) cout<<n<<endl;
else
{
if(n%10>=n%7) cout<<n-n%7<<endl;
else cout<<n+(7-n%7)<<endl;
}
}
return 0;
}
The main idea of the topic : Given one, only 0 and 1 Composed string s, Select a substring , If 0 The number of >1, Then delete 1 The number of , On the contrary, if 1 The number of >0, Then delete 0 The number of .
a key (wa spot ) coming :If the amounts are the same, do nothing.
input
4 01 1010101010111 00110001000 1output
0 5 3 0
If the amounts are the same, do nothing. If sum0==sum1, Don't do anything ?
WA Once + Read the title again and find : Select substring , You have to delete the maximum number , So if I have a string s:“010101”
If I choose the whole string , You can only get 0
However, if I choose a string from it “01010”, Successfully found the difference between size ,so↓
#include<iostream>
#include<cmath>
#include<string>
#include<cstring>
#include<cstdlib>
#include<algorithm>
using namespace std;
int main()
{
cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
int t,n,m;
cin>>t;
while(t--)
{
string s;
cin>>s;
int one=0,zero=0;
for(int i=0;i<s.size();i++)
{
if(s[i]=='0') zero++;
else one++;
}
if(zero==one) cout<<zero-1<<endl;
else cout<<min(zero,one)<<endl;
}
return 0;
}
The main idea of the topic : Game character health hc, aggressivity dc; Monster health hm, aggressivity dm.
The roles before the war are k A coin , One coin can be purchased separately w Attack power , Or is it a The life value of the .
Ask the character if he can win the monster ?
input
4 25 4 9 20 1 1 10 25 4 12 20 1 1 10 100 1 45 2 0 4 10 9 2 69 2 4 2 7output
YES NO YES YES
Be careful : If the judgment condition is written ca/d>=c/cb Meeting wa. And write it ( The life value of the character + The attack power of monsters -1)/ The attack power of monsters >=( Monster health + The attack power of the character -1)/ The attack power of the character . Because we will encounter the problem of remainder , So you need to round up ceil
eg:(5+2-1)/2=3 5/2=2;
#include<iostream>
#include<cmath>
#include<string>
#include<cstring>
#include<cstdlib>
#include<algorithm>
using namespace std;
typedef long long LL;
int main()
{
cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
int t;
cin>>t;
while(t--)
{
LL a,b,c,d,k,bb,aa;
cin>>a>>b>>c>>d>>k>>bb>>aa;
bool flag=false;
for(LL i=0;i<=k;i++)
{
LL ca=a+i*aa;
LL cb=b+(k-i)*bb;
//cout<<ca<<" "<<cb<<" "<<c<<" "<<d;
if((ca+d-1)/d>=(cb+c-1)/cb)
{
flag=true;
cout<<"YES"<<endl;
break;
}
}
if(flag==false) cout<<"NO"<<endl;
}
return 0;
}
边栏推荐
- Database postragesql client authentication
- Analysis and comparison of leetcode weekly race + acwing weekly race (t4/t3)
- Common bit operation skills of C speech
- 19. Delete the penultimate node of the linked list
- 如果消费互联网比喻成「湖泊」的话,产业互联网则是广阔的「海洋」
- Database postragesql client connection default
- PHP 基础篇 - PHP 中 DES 加解密详解
- 微信小程序:全网独家小程序版本独立微信社群人脉
- Actual combat simulation │ JWT login authentication
- The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
猜你喜欢
Win:使用 PowerShell 检查无线信号的强弱
Wechat applet: wechat applet source code download new community system optimized version support agent member system function super high income
MySQL REGEXP:正则表达式查询
Wechat applet: exclusive applet version of the whole network, independent wechat community contacts
Take you ten days to easily complete the go micro service series (IX. link tracking)
Database performance optimization tool
整理混乱的头文件,我用include what you use
Kibana installation and configuration
Win: use PowerShell to check the strength of wireless signal
After reading the average code written by Microsoft God, I realized that I was still too young
随机推荐
MySQL backup and recovery + experiment
Introduction to the gtid mode of MySQL master-slave replication
無心劍英譯席慕容《無怨的青春》
Interesting practice of robot programming 15- autoavoidobstacles
Database postragesql client authentication
MATLB|多微电网及分布式能源交易
[FPGA tutorial case 10] design and implementation of complex multiplier based on Verilog
Mysql database | build master-slave instances of mysql-8.0 or above based on docker
142. Circular linked list II
What is the current situation and Prospect of the software testing industry in 2022?
[wave modeling 2] three dimensional wave modeling and wave generator modeling matlab simulation
R语言用logistic逻辑回归和AFRIMA、ARIMA时间序列模型预测世界人口
C basic knowledge review (Part 3 of 4)
Is there a sudden failure on the line? How to make emergency diagnosis, troubleshooting and recovery
[development of large e-commerce projects] performance pressure test - Optimization - impact of middleware on performance -40
Jcenter () cannot find Alibaba cloud proxy address
Application and Optimization Practice of redis in vivo push platform
PowerShell:在代理服务器后面使用 PowerShell
220213c language learning diary
Change the background color of a pop-up dialog