A - Rated for Me


Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100100 points

Problem Statement

A programming competition site AtCode regularly holds programming contests.

The next contest on AtCode is called ABC, which is rated for contestants with ratings less than 12001200.

The contest after the ABC is called ARC, which is rated for contestants with ratings less than 28002800.

The contest after the ARC is called AGC, which is rated for all contestants.

Takahashi's rating on AtCode is RR. What is the next contest rated for him?

Constraints

  • 0≤R≤42080≤R≤4208
  • RR is an integer.

Input

Input is given from Standard Input in the following format:

RR

Output

Print the name of the next contest rated for Takahashi (ABCARC or AGC).


Sample Input 1 Copy

Copy
1199

Sample Output 1 Copy

Copy
ABC

11991199 is less than 12001200, so ABC will be rated.


Sample Input 2 Copy

Copy
1200

Sample Output 2 Copy

Copy
ARC

12001200 is not less than 12001200 and ABC will be unrated, but it is less than 28002800 and ARC will be rated.


Sample Input 3 Copy

Copy
4208

Sample Output 3 Copy

Copy
AGC
代码:
import java.util.*;

public class Main {

    public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
if(n < 1200)System.out.println("ABC");
else if(n < 2800)System.out.println("ARC");
else System.out.println("AGC");
}
}

B - AcCepted


Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 200200 points

Problem Statement

You are given a string SS. Each character of SS is uppercase or lowercase English letter. Determine if SS satisfies all of the following conditions:

  • The initial character of SS is an uppercase A.
  • There is exactly one occurrence of C between the third character from the beginning and the second to last character (inclusive).
  • All letters except the A and C mentioned above are lowercase.

Constraints

  • 4≤|S|≤104≤|S|≤10 (|S||S| is the length of the string SS.)
  • Each character of SS is uppercase or lowercase English letter.

Input

Input is given from Standard Input in the following format:

SS

Output

If SS satisfies all of the conditions in the problem statement, print AC; otherwise, print WA.


Sample Input 1 Copy

Copy
AtCoder

Sample Output 1 Copy

Copy
AC

The first letter is A, the third letter is C and the remaining letters are all lowercase, so all the conditions are satisfied.


Sample Input 2 Copy

Copy
ACoder

Sample Output 2 Copy

Copy
WA

The second letter should not be C.


Sample Input 3 Copy

Copy
AcycliC

Sample Output 3 Copy

Copy
WA

The last letter should not be C, either.


Sample Input 4 Copy

Copy
AtCoCo

Sample Output 4 Copy

Copy
WA

There should not be two or more occurrences of C.


Sample Input 5 Copy

Copy
Atcoder

Sample Output 5 Copy

Copy
WA

The number of C should not be zero, either.

代码:

import java.util.*;

public class Main {
static boolean check(String s) {
if(s.charAt(0) != 'A')return false;
boolean flag = false;
for(int i = 1;i < s.length();i ++) {
if(s.charAt(i) != 'C') {
if(s.charAt(i) >= 'A' && s.charAt(i) <= 'Z')return false;
}
else if(flag || i < 2 || s.length() - i < 2)return false;
else flag = true;
}
return flag;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String s = in.nextLine();
if(check(s)) {
System.out.println("AC");
}
else {
System.out.println("WA");
}
}
}

C - All Green


Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 300300 points

Problem Statement

A programming competition site AtCode provides algorithmic problems. Each problem is allocated a score based on its difficulty. Currently, for each integer iibetween 11 and DD (inclusive), there are pipi problems with a score of 100i100i points. These p1+…+pDp1+…+pD problems are all of the problems available on AtCode.

A user of AtCode has a value called total score. The total score of a user is the sum of the following two elements:

  • Base score: the sum of the scores of all problems solved by the user.
  • Perfect bonuses: when a user solves all problems with a score of 100i100i points, he/she earns the perfect bonus of cici points, aside from the base score (1≤i≤D)(1≤i≤D).

Takahashi, who is the new user of AtCode, has not solved any problem. His objective is to have a total score of GG or more points. At least how many problems does he need to solve for this objective?

Constraints

  • 1≤D≤101≤D≤10
  • 1≤pi≤1001≤pi≤100
  • 100≤ci≤106100≤ci≤106
  • 100≤G100≤G
  • All values in input are integers.
  • cici and GG are all multiples of 100100.
  • It is possible to have a total score of GG or more points.

Input

Input is given from Standard Input in the following format:

DD GG
p1p1 c1c1
::
pDpD cDcD

Output

Print the minimum number of problems that needs to be solved in order to have a total score of GG or more points. Note that this objective is always achievable (see Constraints).


Sample Input 1 Copy

Copy
2 700
3 500
5 800

Sample Output 1 Copy

Copy
3

In this case, there are three problems each with 100100 points and five problems each with 200200 points. The perfect bonus for solving all the 100100-point problems is 500500 points, and the perfect bonus for solving all the 200200-point problems is 800800 points. Takahashi's objective is to have a total score of 700700 points or more.

One way to achieve this objective is to solve four 200200-point problems and earn a base score of 800800 points. However, if we solve three 100100-point problems, we can earn the perfect bonus of 500500 points in addition to the base score of 300300 points, for a total score of 800800 points, and we can achieve the objective with fewer problems.


Sample Input 2 Copy

Copy
2 2000
3 500
5 800

Sample Output 2 Copy

Copy
7

This case is similar to Sample Input 1, but the Takahashi's objective this time is 20002000 points or more. In this case, we inevitably need to solve all five 200200-point problems, and by solving two 100100-point problems additionally we have the total score of 20002000 points.


Sample Input 3 Copy

Copy
2 400
3 500
5 800

Sample Output 3 Copy

Copy
2

This case is again similar to Sample Input 1, but the Takahashi's objective this time is 400400 points or more. In this case, we only need to solve two 200200-point problems to achieve the objective.


Sample Input 4 Copy

Copy
5 25000
20 1000
40 1000
50 1000
30 1000
1 1000

Sample Output 4 Copy

Copy
66

There is only one 500500-point problem, but the perfect bonus can be earned even in such a case.

可以dfs遍历所有的情况,直到大于等于所需要的为止。

代码:

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#define Max 100001
#define inf 1000000000000000
using namespace std;
struct title {
int p,c,score;
}s[];
int d,g,ans = ;
int vis[];
void dfs(int sum,int k) {
for(int i = ;i <= d;i ++) {
if(vis[i])continue;
if(g - sum <= s[i].score) {
int temp;
if(g - sum < s[i].p * i) {
temp = g - sum;
temp = temp / i + (temp % i > );
}
else temp = s[i].p;
ans = min(ans,k + temp);
continue;
}
vis[i] = ;
dfs(sum + s[i].score,k + s[i].p);
vis[i] = ;
}
}
int main() {
scanf("%d%d",&d,&g);
g /= ;
for(int i = ;i <= d;i ++) {
scanf("%d%d",&s[i].p,&s[i].c);
s[i].c /= ;
s[i].score = s[i].p * i + s[i].c;
}
dfs(,);
printf("%d",ans);
}

因为最多十种题目,可以用二进制位存状态,遍历各种情况。

代码:

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#define Max 100001
#define inf 1000000000000000
using namespace std;
struct problem {
int p,c,score;
}s[];
int d,g,ans = ; int main() {
scanf("%d%d",&d,&g);
g /= ;
for(int i = ;i <= d;i ++) {
scanf("%d%d",&s[i].p,&s[i].c);
s[i].c /= ;
s[i].score = s[i].p * i + s[i].c;
}
for(int i = ;i < << (d + );i ++) {
int sum = ,k = ,maxn;
for(int j = ;j <= d;j ++) {
if(i & ( << j)) {
sum += s[j].score;
k += s[j].p;
}
else maxn = j;
}
if(sum < g) {
int need = (g - sum + maxn - ) / maxn;
if(need > s[maxn].p)continue;
k += need;
}
ans = min(ans,k);
}
printf("%d",ans);
}

D - We Love ABC


Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 400400 points

Problem Statement

The ABC number of a string TT is the number of triples of integers (i,j,k)(i,j,k) that satisfy all of the following conditions:

  • 1≤i<j<k≤|T|1≤i<j<k≤|T| (|T||T| is the length of TT.)
  • Ti=Ti= A (TiTi is the ii-th character of TT from the beginning.)
  • Tj=Tj= B
  • Tk=Tk= C

For example, when T=T= ABCBC, there are three triples of integers (i,j,k)(i,j,k) that satisfy the conditions: (1,2,3),(1,2,5),(1,4,5)(1,2,3),(1,2,5),(1,4,5). Thus, the ABC number of TT is 33.

You are given a string SS. Each character of SS is ABC or ?.

Let QQ be the number of occurrences of ? in SS. We can make 3Q3Q strings by replacing each occurrence of ? in SS with AB or C. Find the sum of the ABC numbers of all these strings.

This sum can be extremely large, so print the sum modulo 109+7109+7.

Constraints

  • 3≤|S|≤1053≤|S|≤105
  • Each character of SS is ABC or ?.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the sum of the ABC numbers of all the 3Q3Q strings, modulo 109+7109+7.


Sample Input 1 Copy

Copy
A??C

Sample Output 1 Copy

Copy
8

In this case, Q=2Q=2, and we can make 3Q=93Q=9 strings by by replacing each occurrence of ? with AB or C. The ABC number of each of these strings is as follows:

  • AAAC00
  • AABC22
  • AACC00
  • ABAC11
  • ABBC22
  • ABCC22
  • ACAC00
  • ACBC11
  • ACCC00

The sum of these is 0+2+0+1+2+2+0+1+0=80+2+0+1+2+2+0+1+0=8, so we print 88 modulo 109+7109+7, that is, 88.


Sample Input 2 Copy

Copy
ABCBC

Sample Output 2 Copy

Copy
3

When Q=0Q=0, we print the ABC number of SS itself, modulo 109+7109+7. This string is the same as the one given as an example in the problem statement, and its ABC number is 33.


Sample Input 3 Copy

Copy
????C?????B??????A???????

Sample Output 3 Copy

Copy
979596887

In this case, the sum of the ABC numbers of all the 3Q3Q strings is 22919796129242291979612924, and we should print this number modulo 109+7109+7, that is, 979596887979596887.

动态规划。

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#define Max 100005
using namespace std;
typedef long long LL;
const int Mod = ;
char s[Max];
LL dp[][Max];///0 '?' 1 'A' 2 'AB' 3 'ABC'
int a,b;
int main() {
scanf("%s",s + );
dp[][] = ;///初始为1
int n = strlen(s + );
for(int i = ;i <= n;i ++) {
for(int j = ;j <= ;j ++) {
dp[j][i] = dp[j][i - ];///加上之前的
if(s[i] == '?')dp[j][i] = (dp[j][i] * ) % Mod;///如果是问号 有三种选择
if(j && (s[i] == '?' || s[i] - 'A' + == j)) {///如果对应于匹配位置
dp[j][i] = (dp[j][i] + dp[j - ][i - ]) % Mod;
}
}
}
printf("%lld",dp[][n]);
}

AtCoder Beginner Contest 104的更多相关文章

  1. AtCoder Beginner Contest 100 2018/06/16

    A - Happy Birthday! Time limit : 2sec / Memory limit : 1000MB Score: 100 points Problem Statement E8 ...

  2. AtCoder Beginner Contest 052

    没看到Beginner,然后就做啊做,发现A,B太简单了...然后想想做完算了..没想到C卡了一下,然后还是做出来了.D的话瞎想了一下,然后感觉也没问题.假装all kill.2333 AtCoder ...

  3. AtCoder Beginner Contest 053 ABCD题

    A - ABC/ARC Time limit : 2sec / Memory limit : 256MB Score : 100 points Problem Statement Smeke has ...

  4. AtCoder Beginner Contest 136

    AtCoder Beginner Contest 136 题目链接 A - +-x 直接取\(max\)即可. Code #include <bits/stdc++.h> using na ...

  5. AtCoder Beginner Contest 137 F

    AtCoder Beginner Contest 137 F 数论鬼题(虽然不算特别数论) 希望你在浏览这篇题解前已经知道了费马小定理 利用用费马小定理构造函数\(g(x)=(x-i)^{P-1}\) ...

  6. AtCoder Beginner Contest 076

    A - Rating Goal Time limit : 2sec / Memory limit : 256MB Score : 100 points Problem Statement Takaha ...

  7. AtCoder Beginner Contest 079 D - Wall【Warshall Floyd algorithm】

    AtCoder Beginner Contest 079 D - Wall Warshall Floyd 最短路....先枚举 k #include<iostream> #include& ...

  8. AtCoder Beginner Contest 064 D - Insertion

    AtCoder Beginner Contest 064 D - Insertion Problem Statement You are given a string S of length N co ...

  9. AtCoder Beginner Contest 075 D - Axis-Parallel Rectangle【暴力】

    AtCoder Beginner Contest 075 D - Axis-Parallel Rectangle 我要崩溃,当时还以为是需要什么离散化的,原来是暴力,特么五层循环....我自己写怎么都 ...

随机推荐

  1. P13在O(1)时间内删除链表结点

    package offer; //在 O(1)时间删除链表结点 public class Problem13 { public static void main(String[] args) { Li ...

  2. Linux远程无密码登陆并远程执行脚本

    假设 A (192.168.20.59)为客户机器,B(192.168.20.60)为目标机: 要达到的目的: A机器ssh登录B机器无需输入密码: 加密方式选 rsa|dsa均可以,默认dsa ss ...

  3. Android TextView setText卡顿问题

    TextView 是经常使用控件之中的一个,最经常使用的方法是setText()  . 可是 我们在显示大量的文本的时候,使用setText还是会有一些性能的问题. 这篇文章 关于TextView的s ...

  4. 【BZOJ4167】永远的竹笋采摘 分块+树状数组

    [BZOJ4167]永远的竹笋采摘 题解:我们考虑有多少点对(a,b)满足a与b的差值是[a,b]中最小的.以为是随机数据,这样的点对数目可能很少,实测是O(n)级别的,那么我们已知了有这么多可能对答 ...

  5. 【BZOJ2626】JZPFAR kd-tree+堆

    [BZOJ2626]JZPFAR Description 平面上有n个点.现在有m次询问,每次给定一个点(px, py)和一个整数k,输出n个点中离(px, py)的距离第k大的点的标号.如果有两个( ...

  6. Django Web开发指南笔记

    Django Web开发指南笔记 语句VS表达式 python代码由表达式和语句组成,由解释器负责执行. 主要区别:表达式是一个值,它的结果一定是一个python对象:如:12,1+2,int('12 ...

  7. 【题解】CF1103D Professional layer

    [题解]CF1103DProfessional layer 神题做前先\(orzyyb\) 一个很好的性质(之前也见过但是没有想到的) zhengchu \(gcd\le 10^{12}\) 所以不同 ...

  8. ProgressBar+WebView实现自定义浏览器

    当我们使用浏览器浏览网页时,总会看到下图页面的样子,上面是一个地址栏,地址栏下面显示加载进度,加载完成后进入页面内容,带颜色的进度条总是少不了的,那样子看起来也舒服,如何实现自定义手机浏览器功能呢? ...

  9. SAP-Function_01

    TH_POPUP –在特定用户屏幕上显示一个系统消息 1 . 函数WS_UPLOAD     功能﹕将TXT文件转换成SAP中的内表定义的数据表格文件    注意﹕1 函数将按参数 data_tab  ...

  10. vue --- axios , vuex

    一 . 内容回顾 1.webpack(前端中工作,项目上线之前对整个前端项目优化) - entry:整个项目的程序入口(main.js或index.js): - output:输出的出口: - loa ...