A - Digit Sum 2


Time limit : 2sec / Memory limit : 256MB

Score : 300 points

Problem Statement

Find the maximum possible sum of the digits (in base 10) of a positive integer not greater than N.

Constraints

  • 1≤N≤1016
  • N is an integer.

Input

Input is given from Standard Input in the following format:

N

Output

Print the maximum possible sum of the digits (in base 10) of a positive integer not greater than N.


Sample Input 1

Copy
100

Sample Output 1

Copy
18

For example, the sum of the digits in 99 is 18, which turns out to be the maximum value.


Sample Input 2

Copy
9995

Sample Output 2

Copy
35

For example, the sum of the digits in 9989 is 35, which turns out to be the maximum value.


Sample Input 3

Copy
3141592653589793

Sample Output 3

Copy
137

找小于等于一个数的位数和最大

很容易想到就是尽量多的填9,比如3位数我就可以填首位,其他的填9,所以就是首位-1+9*(位数-1)

但是99的时候我是可以99的啊,这种贪心就会忽略,所以正确的方式是先把这个数+1

公式为9*(位数-1)+(n+1)的首位-1

#include<bits/stdc++.h>
using namespace std;
long long n,s;
int main()
{
cin>>n,n++;
while(n>)s+=,n/=;
cout<<s+n-;
return ;
}

B - Holes


Time limit : 2sec / Memory limit : 256MB

Score : 600 points

Problem Statement

There are N holes in a two-dimensional plane. The coordinates of the i-th hole are (xi,yi).

Let R=10101010. Ringo performs the following operation:

  • Randomly choose a point from the interior of a circle of radius R centered at the origin, and put Snuke there. Snuke will move to the hole with the smallest Euclidean distance from the point, and fall into that hole. If there are multiple such holes, the hole with the smallest index will be chosen.

For every i (1≤iN), find the probability that Snuke falls into the i-th hole.

Here, the operation of randomly choosing a point from the interior of a circle of radius R is defined as follows:

  • Pick two real numbers x and y independently according to uniform distribution on [−R,R].
  • If x2+y2≤R2, the point (x,y) is chosen. Otherwise, repeat picking the real numbers x,y until the condition is met.

Constraints

  • 2≤N≤100
  • |xi|,|yi|≤106(1≤iN)
  • All given points are pairwise distinct.
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

N
x1 y1
:
xN yN

Output

Print N real numbers. The i-th real number must represent the probability that Snuke falls into the i-th hole.

The output will be judged correct when, for all output values, the absolute or relative error is at most 10−5.


Sample Input 1

Copy
2
0 0
1 1

Sample Output 1

Copy
0.5
0.5

If Ringo put Snuke in the region x+y≤1, Snuke will fall into the first hole. The probability of this happening is very close to 0.5. Otherwise, Snuke will fall into the second hole, the probability of which happening is also very close to 0.5.


Sample Input 2

Copy
5
0 0
2 8
4 5
2 6
3 10

Sample Output 2

Copy
0.43160120892732328768
0.03480224363653196956
0.13880483535586193855
0.00000000000000000000
0.39479171208028279727

这个题就是一个很简单的几何

#include<bits/stdc++.h>
using namespace std;
const double pi=acos(-.);
const int N=;
int n,x[N],y[N];
double p[N+N];
signed main()
{
cin>>n;
for(int i=; i<n; i++)cin>>x[i]>>y[i];
for(int i=; i<n; i++)
{
int tot=;
for(int j=; j<n; j++)
if(i!=j)p[tot++]=atan2(y[j]-y[i],x[j]-x[i]);
sort(p,p+tot);
for(int j=; j<tot; j++)p[j+tot]=p[j]+*pi;
double ans=;
for(int j=; j<tot; j++)ans=max(ans,pi-p[j+tot-]+p[j]);
printf("%.8f\n",ans//pi);
}
return ;
}

C - Tiling


Time limit : 2sec / Memory limit : 256MB

Score : 900 points

Problem Statement

Takahashi has an N×M grid, with N horizontal rows and M vertical columns. Determine if we can place A 1×2 tiles (1 vertical, 2horizontal) and B 2×1 tiles (2 vertical, 1 horizontal) satisfying the following conditions, and construct one arrangement of the tiles if it is possible:

  • All the tiles must be placed on the grid.
  • Tiles must not stick out of the grid, and no two different tiles may intersect.
  • Neither the grid nor the tiles may be rotated.
  • Every tile completely covers exactly two squares.

Constraints

  • 1≤N,M≤1000
  • 0≤A,B≤500000
  • NMA and B are integers.

Input

Input is given from Standard Input in the following format:

N M A B

Output

If it is impossible to place all the tiles, print NO. Otherwise, print the following:

YES
c11…c1M
:
cN1…cNM

Here, cij must be one of the following characters: .<>^ and v. Represent an arrangement by using each of these characters as follows:

  • When cij is ., it indicates that the square at the i-th row and j-th column is empty;
  • When cij is <, it indicates that the square at the i-th row and j-th column is covered by the left half of a 1×2 tile;
  • When cij is >, it indicates that the square at the i-th row and j-th column is covered by the right half of a 1×2 tile;
  • When cij is ^, it indicates that the square at the i-th row and j-th column is covered by the top half of a 2×1 tile;
  • When cij is v, it indicates that the square at the i-th row and j-th column is covered by the bottom half of a 2×1 tile.

Sample Input 1

Copy
3 4 4 2

Sample Output 1

Copy
YES
<><>
^<>^
v<>v

This is one example of a way to place four 1×2 tiles and three 2×1 tiles on a 3×4 grid.


Sample Input 2

Copy
4 5 5 3

Sample Output 2

Copy
YES
<>..^
^.<>v
v<>.^
<><>v

Sample Input 3

Copy
7 9 20 20

Sample Output 3

Copy
NO

C这是要大力模拟?没有想到好做法

抄了一个思路

#include<bits/stdc++.h>
#define ll long long
using namespace std;
int m,n,a,b;
char c[][];
int main()
{
scanf("%d%d%d%d",&m,&n,&a,&b);
for(int i=; i<=m; i++)
for(int j=; j<=n; j++)c[i][j]='.';
if(n&)
{
for(int i=; i<m&&b; i+=)
c[i][n]='^',c[i+][n]='v',b--;
}
if((b&)&&(m&)&&n>&&m>)
c[m-][n-]='^',c[m][n-]='v',b--;
for(int i=; i<m; i++)
for (int j=; j<=n-(n&)&&b; j++)
if(c[i][j]=='.'&&c[i+][j]=='.')
c[i][j]='^',c[i+][j]='v',b--;
for(int i=; i<=m; i++)
for(int j=; j<n&&a; j++)
if(c[i][j]=='.'&&c[i][j+]=='.')
c[i][j]='<',c[i][j+]='>',a--;
if(a||b)
puts("NO");
else
{
puts("YES");
for(int i=; i<=m; i++)printf("%s\n",c[i]+);
}
return ;
}

D - Reversed LCS


Time limit : 2sec / Memory limit : 256MB

Score : 900 points

Problem Statement

Takahashi has decided to give a string to his mother.

The value of a string T is the length of the longest common subsequence of T and T', where T' is the string obtained by reversing T. That is, the value is the longest length of the following two strings that are equal: a subsequence of T (possibly non-contiguous), and a subsequence of T' (possibly non-contiguous).

Takahashi has a string S. He wants to give her mother a string of the highest possible value, so he would like to change at most Kcharacters in S to any other characters in order to obtain a string of the highest possible value. Find the highest possible value achievable.

Constraints

  • 1≤|S|≤300
  • 0≤K≤|S|
  • S consists of lowercase English letters.
  • K is an integer.

Input

Input is given from Standard Input in the following format:

S
K

Output

Print the highest possible value achievable.


Sample Input 1

Copy
abcabcabc
1

Sample Output 1

Copy
7

Changing the first character to c results in cbcabcabc. Let this tring be T, then one longest common subsequence of T and T' is cbabcbc, whose length is 7.


Sample Input 2

Copy
atcodergrandcontest
3

Sample Output 2

Copy
15

一个字符串S,你可以改变其中k个字母,使其变为T,T和T的反转串T' 最长公共子串长度

相当于再求回文串,我改变or不改变然后向内向左扩展就可以了,记忆化搜索避免超时

#include<bits/stdc++.h>
using namespace std;
const int N=;
string s;
int dp[][][],K;
int dfs(int l,int r,int x)
{
if(r<l)return ;
if(l==r)return ;
if(dp[l][r][x]!=-)return dp[l][r][x];//记忆化思想,减少搜索次数
int t=max(dfs(l+,r,x),dfs(l,r-,x));//向左或右扩展一个
if(s[l]==s[r])t=max(t,dfs(l+,r-,x)+);//相等,进行扩展
else if(x)t=max(t,dfs(l+,r-,x-)+);//改变一个字符,向内扩展
return dp[l][r][x]=t;
}
int main()
{
cin>>s>>K;
memset(dp,-,sizeof(dp));
cout<<dfs(,s.size()-,K)<<endl;
return ;
}

E - Ball Eat Chameleons


Time limit : 2sec / Memory limit : 256MB

Score : 1200 points

Problem Statement

In Republic of AtCoder, Snuke Chameleons (Family: Chamaeleonidae, Genus: Bartaberia) are very popular pets. Ringo keeps NSnuke Chameleons in a cage.

A Snuke Chameleon that has not eaten anything is blue. It changes its color according to the following rules:

  • A Snuke Chameleon that is blue will change its color to red when the number of red balls it has eaten becomes strictly larger than the number of blue balls it has eaten.
  • A Snuke Chameleon that is red will change its color to blue when the number of blue balls it has eaten becomes strictly larger than the number of red balls it has eaten.

Initially, every Snuke Chameleon had not eaten anything. Ringo fed them by repeating the following process K times:

  • Grab either a red ball or a blue ball.
  • Throw that ball into the cage. Then, one of the chameleons eats it.

After Ringo threw in K balls, all the chameleons were red. We are interested in the possible ways Ringo could have thrown in Kballs. How many such ways are there? Find the count modulo 998244353. Here, two ways to throw in balls are considered different when there exists i such that the color of the ball that are thrown in the i-th throw is different.

Constraints

  • 1≤N,K≤5×105
  • N and K are integers.

Input

Input is given from Standard Input in the following format:

N K

Output

Print the possible ways Ringo could have thrown in K balls, modulo 998244353.


Sample Input 1

Copy
2 4

Sample Output 1

Copy
7

We will use R to represent a red ball, and B to represent a blue ball. There are seven ways to throw in balls that satisfy the condition: BRRRRBRBRBRRRRBBRRBRRRRB and RRRR.


Sample Input 2

Copy
3 7

Sample Output 2

Copy
57

Sample Input 3

Copy
8 3

Sample Output 3

Copy
0

Sample Input 4

Copy
8 10

Sample Output 4

Copy
46

Sample Input 5

Copy
123456 234567

Sample Output 5

Copy
857617983

给你n,k

AtCoder Grand Contest 021的更多相关文章

  1. AtCoder Grand Contest 021完整题解

    提示:如果公式挂了请多刷新几次,MathJex的公式渲染速度并不是那么理想. 总的来说,还是自己太弱了啊.只做了T1,还WA了两发.今天还有一场CodeForces,晚上0点qwq... 题解还是要好 ...

  2. Atcoder Grand Contest 021 F - Trinity(dp+NTT)

    Atcoder 题面传送门 & 洛谷题面传送门 首先我们考虑设 \(dp_{i,j}\) 表示对于一个 \(i\times j\) 的网格,其每行都至少有一个黑格的合法的三元组 \((A,B, ...

  3. AtCoder Grand Contest 021 D - Reversed LCS

    Description Takahashi has decided to give a string to his mother. The value of a string T is the len ...

  4. AtCoder Grand Contest 021题解

    传送门 \(A\) 咕咕 ll n,res;bool fl; int main(){ scanf("%lld",&n),fl=1; while(n>9)res+=9, ...

  5. AtCoder Grand Contest 012

    AtCoder Grand Contest 012 A - AtCoder Group Contest 翻译 有\(3n\)个人,每一个人有一个强大值(看我的假翻译),每三个人可以分成一组,一组的强大 ...

  6. AtCoder Grand Contest 011

    AtCoder Grand Contest 011 upd:这篇咕了好久,前面几题是三周以前写的... AtCoder Grand Contest 011 A - Airport Bus 翻译 有\( ...

  7. AtCoder Grand Contest 031 简要题解

    AtCoder Grand Contest 031 Atcoder A - Colorful Subsequence description 求\(s\)中本质不同子序列的个数模\(10^9+7\). ...

  8. AtCoder Grand Contest 010

    AtCoder Grand Contest 010 A - Addition 翻译 黑板上写了\(n\)个正整数,每次会擦去两个奇偶性相同的数,然后把他们的和写会到黑板上,问最终能否只剩下一个数. 题 ...

  9. AtCoder Grand Contest 009

    AtCoder Grand Contest 009 A - Multiple Array 翻译 见洛谷 题解 从后往前考虑. #include<iostream> #include< ...

随机推荐

  1. 一个SQL server的事务存储

    -- ============================================= -- Author: Evan -- Create date: 2018年6月14日 16点27分 - ...

  2. 洛谷 P3353 在你窗外闪耀的星星

    题目描述 飞逝的的时光不会模糊我对你的记忆.难以相信从我第一次见到你以来已经过去了3年.我仍然还生动地记得,3年前,在美丽的集美中学,从我看到你微笑着走出教室,你将头向后仰,柔和的晚霞照耀着你玫瑰色的 ...

  3. Android(java)学习笔记114:Service生命周期

    1.Service的生命周期         Android中的Service(服务)与Activity不同,它是不能和用户交互,不能自己启动的,运行在后台的程序,如果我们退出应用的时候,Servic ...

  4. 分类回归树(CART)

    概要 本部分介绍 CART,是一种非常重要的机器学习算法.   基本原理   CART 全称为 Classification And Regression Trees,即分类回归树.顾名思义,该算法既 ...

  5. GC执行finalize的过程以及对象的一次自我拯救

    参考资料:深入理解java虚拟机 /** * 此代码演示了两点: * 1.对象可以在被GC时自我拯救 * 2.这种自救的机会只有一次,因为一个对象的finalize()方法只会被系统自动调一次 */ ...

  6. js函数式编程(二)-柯里化

    这节开始讲的例子都使用简单的TS来写,尽量做到和es6差别不大,正文如下 我们在编程中必然需要用到一些变量存储数据,供今后其他地方调用.而函数式编程有一个要领就是最好不要依赖外部变量(当然允许通过参数 ...

  7. OI算法复习

    搜集一些算法,赛前背一背有好处的 转自各大网站 前排感谢:hzwer.风了咕凉 前辈...Orz 快速读入: int read() { ,f=;char ch=getchar(); ;ch=getch ...

  8. 初学redis,redis基本数据类型

    String: 1. set key value 2. get key 3. del key 4. strlen key 5. getset key value 修改键值对   6. getrange ...

  9. Win10家庭版找不到组策略gpedit.msc

    首先在桌面上建立一个txt文本文件,将下面的代码复制到里面 @echo off pushd "%~dp0" dir /b C:\Windows\servicing\Packages ...

  10. Python基础学习总结__Day2

    一.模块初始 1.标准库模块: (1) Os模块 ① 和操作系统交互:例:执行命令代码 (2) Sys模块 ① 脚本+参数——>结果 2.第三方库模块:Django,Mysql... 存在E:\ ...