2020.10.30--vj个人赛补题
D - D
Vladik is a competitive programmer. This year he is going to win the International Olympiad in Informatics. But it is not as easy as it sounds: the question Vladik face now is to find the cheapest way to get to the olympiad.
Vladik knows n airports. All the airports are located on a straight line. Each airport has unique id from 1 to n, Vladik's house is situated next to the airport with id a, and the place of the olympiad is situated next to the airport with id b. It is possible that Vladik's house and the place of the olympiad are located near the same airport.
To get to the olympiad, Vladik can fly between any pair of airports any number of times, but he has to start his route at the airport a and finish it at the airport b.
Each airport belongs to one of two companies. The cost of flight from the airport i to the airport j is zero if both airports belong to the same company, and |i - j| if they belong to different companies.
Print the minimum cost Vladik has to pay to get to the olympiad.
Input
The first line contains three integers n, a, and b (1 ≤ n ≤ 105, 1 ≤ a, b ≤ n) — the number of airports, the id of the airport from which Vladik starts his route and the id of the airport which he has to reach.
The second line contains a string with length n, which consists only of characters 0 and 1. If the i-th character in this string is 0, then i-th airport belongs to first company, otherwise it belongs to the second.
Output
Print single integer — the minimum cost Vladik has to pay to get to the olympiad.
Examples
4 1 4
1010
1
5 5 2
10110
0
Note
In the first example Vladik can fly to the airport 2 at first and pay |1 - 2| = 1 (because the airports belong to different companies), and then fly from the airport 2 to the airport 4for free (because the airports belong to the same company). So the cost of the whole flight is equal to 1. It's impossible to get to the olympiad for free, so the answer is equal to 1.
In the second example Vladik can fly directly from the airport 5 to the airport 2, because they belong to the same company.
题意:Vladik是一位有竞争力的程序员。今年,他将赢得国际信息学奥林匹克奖。但这并不像听起来那么容易:弗拉迪克现在面临的问题是寻找最廉价的到达奥林匹克运动会的方式。Vladik知道n个机场。所有的机场都位于一条直线上。每个机场的ID从1到n是唯一的,Vladik的房子位于ID为a的机场旁边,奥林匹克公园的位置位于ID为b的机场旁边。弗拉迪克的房子和奥林匹克奥林匹克的所在地可能位于同一机场附近。为了到达奥运会,弗拉迪克可以在任何一对机场之间任意飞行多次,但是他必须在机场a处开始其航线并在机场b处结束。每个机场属于两个公司之一。如果两个机场属于同一公司,则从机场i到机场j的飞行成本为零,如果属于不同的公司,则成本为| i-j |。
输入:第一行包含三个整数n,a和b(1≤n≤105,1≤a,b≤n)-机场数量,弗拉迪克开始其航线的机场ID和机场ID他必须达到的目标。第二行包含一个长度为n的字符串,该字符串仅包含字符0和1。如果该字符串中的第i个字符为0,则第i个机场属于第一家公司,否则属于第二家公司。
输出:打印单个整数-弗拉迪克(Vladik)参加奥林匹克运动会必须支付的最低费用。
题解:可以看出结果不是1就是0,当a==b时结果为0,不同时为1
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,a,b;
cin>>n>>a>>b;
string s;
for(int i=1;i<=n;i++)cin>>s[i];
if(s[a]==s[b])cout<<"0"<<endl;
else cout<<"1"<<endl;
}
E - E
/*/******/
题意:Chloe和Vladik一样,是个很有竞争力的程序员。和弗拉迪克一样,她没有遇到任何困难,但她对奥运会上提出的任务感到困惑。让我们考虑以下生成整数序列的算法。一开始我们有一个由一个等于1的元素组成的序列。然后执行(n - 1)步。在每一步中,我们取上一步得到的序列,把它附加到它自身的末尾,并在中间插入我们以前没有用过的最小正整数。例如,第一步后得到序列[1,2,1],第二步后得到序列[1,2,1,3,1,2,1]。任务是在得到的序列中找到索引为k的元素的值(元素从1开始编号),即经过(n - 1)步。请帮助Chloe解决这个问题!输入仅一行包含两个整数n和k (1<= n<= 50, 1<= k<= 2n - 1),输出打印单个整数,即得到序列中第k个位置的整数。
题解:
第几串 数组 中间的数 中间数的位置
1 1 1 1
2 121 2 2
3 1213121 3 4
n ......... n 2^(n-1)
先用数组将中间数的位置记录下来,因为中间数的后面都是与前面重复的数,所以可以只将有效长度设为2^(n-1),因为第几串的值就是中间数的值,所以当k=s[n]时直接输出n值,当k>s[n]时,k-=s[n],n--;直至k=s[n],输出此时的n值
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
long long k,i,j;
scanf("%lld",&k);
long long s[10000]={0};
for(i=1;i<=51;i++)//记下每步后的中间数的位置
{
if(i==1)s[i]=1;
else s[i]=pow(2,i-1);
}
while(k!=s[n])
{
if(k>s[n])
{
k=k-s[n];
}
n--;
}
cout<<n<<endl;
}
F - F
题意:弗拉迪克(Vladik)和克洛伊(Chloe)决定确定他们中谁在数学上更好。弗拉迪克声称,对于任何正整数n,他都可以将分数
表示为形式上为
三个不同的正分数之和。帮助Vladik,即对于给定的n找到三个不同的正整数x,y和z,使 。因为如果数字很大,Chloe无法检查Vladik的答案,他要求您打印不超过10^9的数字。如果没有这样的答案,请打印-1。输入单行包含单个整数n(1≤n≤104)。输出如果存在答案,则打印3个不同的数字x,y和z(1≤x,y,z≤109,x≠y,x≠z,y≠z)。否则打印-1。如果有多个答案,请打印其中的任何一个。示例输入3输出2 7 42输入7输出7 8 56
题解:
n 分数 x y z
1 2/1 无
2 2/2 2 3 6
3 2/3 3 4 12
4 2/4 4 5 20
n 2/n n n+1 n*(n+1)
通过举例可以得到,n=1时结果为-1,其余情况下可以另结果为n n+1 n*(n+1)
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
long long sum=0,num=0,h;
if(n==1)cout<<"-1"<<endl;
else
{
cout<<n<<" "<<n+1<<" "<<n*(n+1)<<endl;
}
}
2020.10.30--vj个人赛补题的更多相关文章
- 2020.10.17-pta天梯练习赛补题
7-5敲笨钟 微博上有个自称"大笨钟V"的家伙,每天敲钟催促码农们爱惜身体早点睡觉.为了增加敲钟的趣味性,还会糟改几句古诗词.其糟改的方法为:去网上搜寻压"ong&quo ...
- 2020.10.16--vj个人赛补题
D - Drinks Choosing Old timers of Summer Informatics School can remember previous camps in which eac ...
- 2020.10.9--vj个人赛补题
B - A Tide of Riverscape 题意:给出一组字符串,由'0','1',' . '组成,' . '可以换成 0或1,判断第 i 个和第 i+p 个字符是否可以不相等,如果可以则输出 ...
- 2020.10.23-vj个人赛补题
B - B Polycarp loves lowercase letters and dislikes uppercase ones. Once he got a string s consistin ...
- QFNU-ACM 2020.04.05个人赛补题
A.CodeForces-124A (简单数学题) #include<cstdio> #include<algorithm> #include<iostream> ...
- 2020.12.3--vj个人赛补题
A Vasya studies music.He has learned lots of interesting stuff. For example, he knows that there are ...
- 2020.12.20-Codeforces Round #105补题
B - Escape The princess is going to escape the dragon's cave, and she needs to plan it carefully. Th ...
- 牛客 2020.10.20 TG 前两题
T1 GCD 数学水题... 对于每个数,如果这个数有两个及以上的质因数的话,它所有除 \(1\) 之外的因数求 \(GCD\) 的值一定为 \(1\).那么判断是否是质数或质数的次方即可(质数除 \ ...
- 2020.11.14-pta天梯练习赛补题
7-7 矩阵A乘以B 给定两个矩阵A和B,要求你计算它们的乘积矩阵AB.需要注意的是,只有规模匹配的矩阵才可以相乘.即若A有Ra行.Ca列,B有Rb行.Cb列,则只有Ca ...
随机推荐
- 致敬mentohust,路由器使用Socket认证华科校园网
致敬mentohust,路由器使用Socket认证华科校园网 前言: 上一篇文章中,为了解决ESP32华科无线网认证的问题,我成功把网页认证机制用Python+Socket复现.但痛点依然存在,无线网 ...
- Java编程:为什么Class实例可以不是全局唯一
通过定义两个类加载器加载同一字节码文件来证明Class实例为什么不是全局唯一的 1.将一个名为Demo(没有后缀)的字节码文件放在D盘根目录 2.定义两个类加载器 自定义ClassLoader三要素: ...
- Vue获取Abp VNext Token
Abp VNext默认没公开访问Token的Api,但有个问题Cookie方式如果是手机或桌面程序不如Token方便 Axios默认是Json方式提交,abp登录需要使用application/x-w ...
- throw关键字
1.基础用法 2.方法中加合法校验,告知方法的调用者 数组越界判断 3.一切皆为对象,创建的是运行期对象,则可以不处理(throws/try catch),直接交给JVM处理(打印并终止程序) 4.O ...
- Typora + PicGo做个人知识库
最近在做个人知识库,考察了一圈各种平台和工具,发现还是直接用文件系统管理Markdown文件更符合我当前的需求.以Markdown文件作为文字载体,以文件目录作为分类结构,承载以计算机知识为主的学习笔 ...
- 【第一篇】- Maven 系列教程之Spring Cloud直播商城 b2b2c电子商务技术总结
Maven 教程 Maven 翻译为"专家"."内行",是 Apache 下的一个纯 Java 开发的开源项目.基于项目对象模型(缩写:POM)概念,Maven ...
- golang指针接收者和值接收者方法调用笔记
初学go时很多同学会把 值接收者 和 指针接收者 的方法相互调用搞混淆,好多同学都只记得指针类型可以调用值接收者方法和指针接收者方法,而值类型只能调用值接收者方法,其实不然,在某些情况下,值类型也是可 ...
- MAC地址知识
1. 全球唯一无法保障. 软件工具可以修改网卡的MAC地址 2.不需要全球唯一. 只要保障局域网内不重复就行. 路由器 保证 数据在不同局域网内跳转. 如果局域网内使用集线器,那么可以设置相 ...
- Xshell 为什么会出现中文乱码?
在网上下载xshell并成功安装了,但是当登录服务器查看中文时却出现了乱码的现象呢?这是怎么回事呢?本集小编就同大家详细讲讲. 图1:使用中文命名文档 现象: 登录服务器查看中文却出现乱码 原因分析: ...
- 使用 elementUI 的表单进行查询,表单中只有一个文本框时,回车会自动触发表单的提交事件,导致页面的刷新。
使用elementUI的el-form组件进行查询时,当输入框仅有一项时,回车自动提交表单,浏览器会刷新页面: 原因:由于当表单只有一个文本框时,按下回车将会触发表单的提交事件, 从而导致页面刷新. ...