2018SDIBT_国庆个人第四场
A - A 这题很巧妙啊,前两天刚好做过,而且就在博客里
1 second
256 megabytes
standard input
standard output
Little C loves number «3» very much. He loves all things about it.
Now he has a positive integer nn. He wants to split nn into 33 positive integers a,b,ca,b,c, such that a+b+c=na+b+c=n and none of the 33 integers is a multiple of 33. Help him to find a solution.
A single line containing one integer nn (3≤n≤1093≤n≤109) — the integer Little C has.
Print 33 positive integers a,b,ca,b,c in a single line, such that a+b+c=na+b+c=n and none of them is a multiple of 33.
It can be proved that there is at least one solution. If there are multiple solutions, print any of them.
3
1 1 1
233
77 77 79
被样例困惑了很久,看了题解啧啧,其实这题就是构造
大致题意:给你一个数n,找到三个数a,b,c,使得a+b+c=n,并且a,b,c都不能是3的倍数
分析:当n%3=0时,n-2一定不是3的倍数,可以构造为a=1,b=1,c=n-2;当n%3!=0时,n-3一定不是3的倍数,那么可以构造为,a=1,b=2,c=n-3.注意这个构造是任意的,只要满足条件即可
1 #include<cstdio>
2 #include<cstring>
3 #include<algorithm>
4 using namespace std;
5 int main()
6 {
7 int n;
8 while(~scanf("%d",&n))
9 {
10 if(n%3==0)
11 printf("1 1 %d\n",n-2);
12 else
13 printf("1 2 %d\n",n-3);
14 }
15 return 0;
16 }
1 second
256 megabytes
standard input
standard output
There are nn points on the plane, (x1,y1),(x2,y2),…,(xn,yn)(x1,y1),(x2,y2),…,(xn,yn).
You need to place an isosceles triangle with two sides on the coordinate axis to cover all points (a point is covered if it lies inside the triangle or on the side of the triangle). Calculate the minimum length of the shorter side of the triangle.
First line contains one integer nn (1≤n≤1051≤n≤105).
Each of the next nn lines contains two integers xixi and yiyi (1≤xi,yi≤1091≤xi,yi≤109).
Print the minimum length of the shorter side of the triangle. It can be proved that it's always an integer.
3
1 1
1 2
2 1
3
4
1 1
1 2
2 1
2 2
4
Illustration for the first example:
Illustration for the second example:
题意:唔就是,让你找到一个最小的等腰三角形,使得给出的所有点都包含在等腰三角形里或者等腰三角形边上
分析: 其实就是找给出的点在y轴上截距最大的时候,满足方程y=-x+b,移一下就是,x+y=b,只要找到x+y的最大值即可、
1 #include<cstdio>
2 #include<cstring>
3 #include<algorithm>
4 #include<cmath>
5 using namespace std;
6 int main()
7 {
8 int n;
9 while(~scanf("%d",&n))
10 {
11 int a,b,ans=0;
12 while(n--)
13 {
14 scanf("%d %d",&a,&b);
15 ans=max(a+b,ans);
16 }
17 printf("%d\n",ans);
18 }
19 return 0;
20 }
C - C Karen and Morning
Description
Karen is getting ready for a new school day!
It is currently hh:mm, given in a 24-hour format. As you know, Karen loves palindromes, and she believes that it is good luck to wake up when the time is a palindrome.
What is the minimum number of minutes she should sleep, such that, when she wakes up, the time is a palindrome?
Remember that a palindrome is a string that reads the same forwards and backwards. For instance, 05:39 is not a palindrome, because 05:39 backwards is 93:50. On the other hand, 05:50 is a palindrome, because 05:50 backwards is 05:50.
Input
The first and only line of input contains a single string in the format hh:mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59).
Output
Output a single integer on a line by itself, the minimum number of minutes she should sleep, such that, when she wakes up, the time is a palindrome.
Sample Input
05:39
11
13:31
0
23:59
1
Hint
In the first test case, the minimum number of minutes Karen should sleep for is 11. She can wake up at 05:50, when the time is a palindrome.
In the second test case, Karen can wake up immediately, as the current time, 13:31, is already a palindrome.
In the third test case, the minimum number of minutes Karen should sleep for is 1 minute. She can wake up at 00:00, when the time is a palindrome.
题意:这个女孩每到一个回文时间就会醒来,问她最少能睡多长时间。输入的字符串格式一定是hh:xx格式
分析:模拟就好
#include<cstdio>
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;
int main()
{
char s[];
while(~scanf("%s",s))
{
int a,b;
a=(s[]-'')*+s[]-'';//a是小时
b=(s[]-'')*+s[]-'';//b是分钟
//printf("%d %d",a,b);
int q,w,e,r,j,t,tt,flag=,i;
for(i=a;i<=;i++)//注意只有1-23小时
{
q=i/;
w=i%;
if(i==a)
j=b;
else
j=;
for(;j<=;j++)//只有0-59秒
{ e=j/;
r=j%;
if(q==r&&w==e)
{
t=i,tt=j;
flag=;
break;
}
}
if(flag==)
break;
}
// printf("%d %d\n",t,tt);
if(flag==)
{
if(t==a)
printf("%d\n",tt-b);//当在原来的小时形成回文时,只需要减去分钟数就好
else
printf("%d\n",(t-a-)*+-b+tt);//间隔了t-a-1个小时
}
if(flag==&&i==)
printf("%d\n",(-a-)*+-b);
}
return ;
}
D - D
2.5 seconds
512 megabytes
standard input
standard output
To stay woke and attentive during classes, Karen needs some coffee!
Karen, a coffee aficionado, wants to know the optimal temperature for brewing the perfect cup of coffee. Indeed, she has spent some time reading several recipe books, including the universally acclaimed "The Art of the Covfefe".
She knows n coffee recipes. The i-th recipe suggests that coffee should be brewed between li and ri degrees, inclusive, to achieve the optimal taste.
Karen thinks that a temperature is admissible if at least k recipes recommend it.
Karen has a rather fickle mind, and so she asks q questions. In each question, given that she only wants to prepare coffee with a temperature between a and b, inclusive, can you tell her how many admissible integer temperatures fall within the range?
The first line of input contains three integers, n, k (1 ≤ k ≤ n ≤ 200000), and q (1 ≤ q ≤ 200000), the number of recipes, the minimum number of recipes a certain temperature must be recommended by to be admissible, and the number of questions Karen has, respectively.
The next n lines describe the recipes. Specifically, the i-th line among these contains two integers li and ri (1 ≤ li ≤ ri ≤ 200000), describing that the i-th recipe suggests that the coffee be brewed between li and ri degrees, inclusive.
The next q lines describe the questions. Each of these lines contains a and b, (1 ≤ a ≤ b ≤ 200000), describing that she wants to know the number of admissible integer temperatures between a and b degrees, inclusive.
For each question, output a single integer on a line by itself, the number of admissible integer temperatures between a and b degrees, inclusive.
3 2 4
91 94
92 97
97 99
92 94
93 97
95 96
90 100
3
3
0
4
2 1 1
1 1
200000 200000
90 100
0
In the first test case, Karen knows 3 recipes.
- The first one recommends brewing the coffee between 91 and 94 degrees, inclusive.
- The second one recommends brewing the coffee between 92 and 97 degrees, inclusive.
- The third one recommends brewing the coffee between 97 and 99 degrees, inclusive.
A temperature is admissible if at least 2 recipes recommend it.
She asks 4 questions.
In her first question, she wants to know the number of admissible integer temperatures between 92 and 94 degrees, inclusive. There are 3: 92, 93 and 94 degrees are all admissible.
In her second question, she wants to know the number of admissible integer temperatures between 93 and 97 degrees, inclusive. There are 3: 93, 94 and 97 degrees are all admissible.
In her third question, she wants to know the number of admissible integer temperatures between 95 and 96 degrees, inclusive. There are none.
In her final question, she wants to know the number of admissible integer temperatures between 90 and 100 degrees, inclusive. There are 4: 92, 93, 94 and 97 degrees are all admissible.
In the second test case, Karen knows 2 recipes.
- The first one, "wikiHow to make Cold Brew Coffee", recommends brewing the coffee at exactly 1 degree.
- The second one, "What good is coffee that isn't brewed at at least 36.3306 times the temperature of the surface of the sun?", recommends brewing the coffee at exactly 200000 degrees.
A temperature is admissible if at least 1 recipe recommends it.
In her first and only question, she wants to know the number of admissible integer temperatures that are actually reasonable. There are none.
题意:有n个食谱,告诉你n段温度适合煮咖啡,如果某个温度被至少k个食谱里的温度包含,则符合条件,你有q次查询,让你求出每次查询中符合条件的温度的数量
分析:看数据量,暴力肯定不行,看代码吧
#include<cstdio>
#include<cstring>
#include<algorithm>
const int m = 2e5;
int main()
{
int n,k,q,a[m];
while(~scanf("%d %d %d",&n,&k,&q))
{
int l,r;
memset(a,,sizeof(a));
for(int i=;i<=n;i++)
{
scanf("%d %d",&l,&r);
a[l]++;
a[r+]--;
}
for(int i=;i<=m;i++)
{
a[i]+=a[i-];
}
for(int i=;i<=m;i++)
{
a[i]=a[i-]+(a[i]>=k);
}
for(int i=;i<=q;i++)
{
scanf("%d %d",&l,&r);
printf("%d\n",a[r]-a[l-]);
}
}
return ;
}
不会解释,贴一个题解的链接https://blog.csdn.net/nka_kun/article/details/73411740
E - E Karen and Game 816c
2 seconds
512 megabytes
standard input
standard output
On the way to school, Karen became fixated on the puzzle game on her phone!
The game is played as follows. In each level, you have a grid with n rows and m columns. Each cell originally contains the number 0.
One move consists of choosing one row or column, and adding 1 to all of the cells in that row or column.
To win the level, after all the moves, the number in the cell at the i-th row and j-th column should be equal to gi, j.
Karen is stuck on one level, and wants to know a way to beat this level using the minimum number of moves. Please, help her with this task!
The first line of input contains two integers, n and m (1 ≤ n, m ≤ 100), the number of rows and the number of columns in the grid, respectively.
The next n lines each contain m integers. In particular, the j-th integer in the i-th of these rows contains gi, j (0 ≤ gi, j ≤ 500).
If there is an error and it is actually not possible to beat the level, output a single integer -1.
Otherwise, on the first line, output a single integer k, the minimum number of moves necessary to beat the level.
The next k lines should each contain one of the following, describing the moves in the order they must be done:
- row x, (1 ≤ x ≤ n) describing a move of the form "choose the x-th row".
- col x, (1 ≤ x ≤ m) describing a move of the form "choose the x-th column".
If there are multiple optimal solutions, output any one of them.
3 5
2 2 2 3 2
0 0 0 1 0
1 1 1 2 1
4
row 1
row 1
col 4
row 3
3 3
0 0 0
0 1 0
0 0 0
-1
3 3
1 1 1
1 1 1
1 1 1
3
row 1
row 2
row 3
In the first test case, Karen has a grid with 3 rows and 5 columns. She can perform the following 4 moves to beat the level:
In the second test case, Karen has a grid with 3 rows and 3 columns. It is clear that it is impossible to beat the level; performing any move will create three 1s on the grid, but it is required to only have one 1 in the center.
In the third test case, Karen has a grid with 3 rows and 3 columns. She can perform the following 3 moves to beat the level:
Note that this is not the only solution; another solution, among others, is col 1, col 2, col 3.
题意:你有一个n×m的矩阵,且全为0,要变成所给出的矩阵,操作要么每行都加1,要么每列都加1,如果可以输出操作的行和列,否则输出-1
分析:这道题其实就是一个模拟的过程,将所给出的矩阵每列或每行减一,看最后的矩阵是否全为0,但要注意两个问题:1:数组大小的问题,一开始数组开太小导致w了好多发;2:当行数小于列数时,先执行消除行的操作;当列数小于行数的时候,先执行消除列的操作。
#include<cstdio>
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;
int main()
{
int a[][],b[][],c[],d[],aa[],bb[],n,m,e[],f[];
while(~scanf("%d %d",&n,&m))
{
memset(b,,sizeof(b));
for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
scanf("%d",&a[i][j]);
}
// printf("%d\n",c[i]);
}//找到每一行最小的那个数
int t=,tt=;
if(n<m)//如果行数小于列数,先消除行
{ for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
d[j]=a[i][j];
}
sort(d,d+m);
c[i]=d[];
}
for(int i=;i<n;i++)
{
for(int k=;k<c[i];k++)
aa[t++]=i;
// printf("row %d\n",i); for(int j=;j<m;j++)
{
a[i][j]-=c[i];//每一行每个数减去最小的那个数
}
// for(int j=1;j<=m;j++)
// {
// printf("%d ",a[i][j]);
// }
// printf("\n");
}
for(int j=;j<m;j++)
{
for(int i=;i<n;i++)
{
e[i]=a[i][j];
}
sort(e,e+n);
// printf("%d\n",e[0]);
f[j]=e[];//找到每列最小的那个数
}
for(int j=;j<m;j++)
{
for(int k=;k<f[j];k++)
bb[tt++]=j;
// printf("col %d\n",j);
for(int i=;i<n;i++)
{
a[i][j]-=f[j];//每列每个数减去每列最小的那个数
}
}
}
else//如果列数小于行数,先消除列数
{
for(int j=;j<m;j++)
{
for(int i=;i<n;i++)
{
e[i]=a[i][j];
}
sort(e,e+n);
// printf("%d\n",e[0]);
f[j]=e[];//找到每列最小的那个数
}
for(int j=;j<m;j++)
{
for(int k=;k<f[j];k++)
bb[tt++]=j;
// printf("col %d\n",j);
for(int i=;i<n;i++)
{
a[i][j]-=f[j];//每列每个数减去每列最小的那个数
}
}
for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
d[j]=a[i][j];
}
sort(d,d+m);
c[i]=d[];
}
for(int i=;i<n;i++)
{
for(int k=;k<c[i];k++)
aa[t++]=i;
// printf("row %d\n",i); for(int j=;j<m;j++)
{
a[i][j]-=c[i];//每一行每个数减去最小的那个数
}
// for(int j=1;j<=m;j++)
// {
// printf("%d ",a[i][j]);
// }
// printf("\n");
}
}
int flag=;
for(int i=;i<n;i++)
{
for(int j=;j<m;j++)
{
if(a[i][j]!=b[i][j])//b为全是0的矩阵
{
flag=;
break;
}
}
}//与全是0的矩阵比较,如果不相等则跳出
if(flag==)
{
printf("-1\n");
}
else
{
printf("%d\n",t+tt);
for(int i=;i<t;i++)
printf("row %d\n",aa[i]+);
for(int i=;i<tt;i++)
printf("col %d\n",bb[i]+);
}
}
return ;
}
2018SDIBT_国庆个人第四场的更多相关文章
- 2018SDIBT_国庆个人第七场
A - Complete the Word(暴力) Description ZS the Coder loves to read the dictionary. He thinks that a wo ...
- 2018SDIBT_国庆个人第六场
A - A codeforces 714A Description Today an outstanding event is going to happen in the forest — hedg ...
- 2018SDIBT_国庆个人第五场
A - ACodeForces 1060A Description Let's call a string a phone number if it has length 11 and fits th ...
- 2018SDIBT_国庆个人第三场
A - A CodeForces - 1042A There are nn benches in the Berland Central park. It is known that aiai peo ...
- 2018 HDU多校第四场赛后补题
2018 HDU多校第四场赛后补题 自己学校出的毒瘤场..吃枣药丸 hdu中的题号是6332 - 6343. K. Expression in Memories 题意: 判断一个简化版的算术表达式是否 ...
- 牛客网NOIP赛前集训营-提高组(第四场)游记
牛客网NOIP赛前集训营-提高组(第四场)游记 动态点分治 题目大意: \(T(t\le10000)\)组询问,求\([l,r]\)中\(k(l,r,k<2^{63})\)的非负整数次幂的数的个 ...
- NOI.AC NOIP模拟赛 第四场 补记
NOI.AC NOIP模拟赛 第四场 补记 子图 题目大意: 一张\(n(n\le5\times10^5)\)个点,\(m(m\le5\times10^5)\)条边的无向图.删去第\(i\)条边需要\ ...
- CTF-i春秋网鼎杯第四场部分writeup
CTF-i春秋网鼎杯第四场部分writeup 因为我们组的比赛是在第四场,所以前两次都是群里扔过来几道题然后做,也不知道什么原因第三场的题目没人发,所以就没做,昨天打了第四场,简直是被虐着打. she ...
- 牛客网暑期ACM多校训练营(第四场):A Ternary String(欧拉降幂)
链接:牛客网暑期ACM多校训练营(第四场):A Ternary String 题意:给出一段数列 s,只包含 0.1.2 三种数.每秒在每个 2 后面会插入一个 1 ,每个 1 后面会插入一个 0,之 ...
随机推荐
- [UE4]点积、余弦和急停
急停控制:
- ARCGIS 出图显示not map metafile into memory.Not enough memory
有许多的原因,比如系统有问题,磁盘空间不够,或虚拟内存设置不对等.再有就是输出地图时分辨率的设置是否太大等. not enough memory 这个问题是ESRI的一个所谓的“臭名昭著 ...
- tf.nn.dynamic_rnn
tf.nn.dynamic_rnn(cell,inputs,sequence_length=None, initial_state=None,dtype=None, parallel_iteratio ...
- 第9章 应用层(6)_SMTP和POP3/IMAP协议
7. 电子邮件 7.1 电子邮件发送和接收过程 (1)图解电子邮件的发送 ①一个电子邮件系统应具备三个主要组成构件:A用户代理(如Outlook).B邮件服务器.C邮件发送和接收协议(分别为SMTP和 ...
- Delphi SetParent 嵌入其他应用程序
[代码]Delphi实现窗体内嵌其他应用程序窗体 实现原理是启动一个应用程序,通过ProcessID得到窗体句柄,然后对其设定父窗体句柄为本程序某控件句柄(本例是窗体内一个Panel的句柄),这样就达 ...
- nodejs使用案例-mysql操作
1.package.json: { "scripts": { "start": "node app.js" }, "devDepe ...
- Elasticsearch简介与安装
搜索 就是在任何场景下,找寻你想要的信息,这个时候,会输入一段你要搜索的关键字,然后就期望找到这个关键字相关的有些信息 垂直搜索 站内搜索 互联网搜索 电商网站,招聘网站,新闻网站,各种app IT系 ...
- SparkStreaming性能调优
合理的并行度 减少任务启动开销 选择合适的batch Duration 内存调优 设置合理的cpu数
- Java程序---多数字求和
题目: 编写一个程序,此程序从命令行接收多个数字,求和之后输出结果. 设计思想: 1.记录要输入的数字的个数n 2.建立一个长度为n的数组存储输入的数字 3.累加求和并输出结果 注:此程序中应用了Sc ...
- three.js学习:性能监视器stats.js的用法
用法一: var stats = new Stats(); stats.setMode(0); stats.domElement.style.position = 'absolute'; stats. ...