Codeforces Round #263 (Div. 2) A B C
A. Appleman and Easy Task
time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output
Toastman came up with a very easy task. He gives it to Appleman, but Appleman doesn't know how to solve it. Can you help him?
Given a n × n checkerboard. Each cell of the board has either character 'x', or character 'o'. Is it true that each cell of the board has even number of adjacent cells with 'o'? Two cells of the board are adjacent if they share a side.
The first line contains an integer n (1 ≤ n ≤ 100). Then n lines follow containing the description of the checkerboard. Each of them contains n characters (either 'x' or 'o') without spaces.
Print "YES" or "NO" (without the quotes) depending on the answer to the problem.
3
xxo
xox
oxx
YES
input
4
xxxo
xoxo
oxox
xxxx
output
NO
题意 :n*n的格子,问是否每个格子都与偶数个o相邻
思路 :暴力。。。最讨厌这种怎么看都对的数据了。。。。
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <stdlib.h>
#include <algorithm> using namespace std ; char sh[][] ; int main()
{
int n ;
scanf("%d",&n) ;
for(int i = ; i < n ; i++)
scanf("%s",sh[i]) ;
bool flag = false ;
for(int i = ; i < n ; i++)
{
for(int j = ; j < n ; j++)
{
int cnt = ;
if(i > && sh[i-][j] == 'o') cnt ++ ;
if(i < n- && sh[i+][j] == 'o') cnt++ ;
if(j > && sh[i][j-] == 'o') cnt ++ ;
if(j < n- && sh[i][j+] == 'o') cnt ++;
if(cnt % )
{
flag = true ;break ;
}
}
if(flag) break ;
}
if(flag) puts("NO") ;
else puts("YES") ;
return ;
}
B. Appleman and Card Game
time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output
Appleman has n cards. Each card has an uppercase letter written on it. Toastman must choose k cards from Appleman's cards. Then Appleman should give Toastman some coins depending on the chosen cards. Formally, for each Toastman's card i you should calculate how much Toastman's cards have the letter equal to letter on ith, then sum up all these quantities, such a number of coins Appleman should give to Toastman.
Given the description of Appleman's cards. What is the maximum number of coins Toastman can get?
The first line contains two integers n and k (1 ≤ k ≤ n ≤ 105). The next line contains n uppercase letters without spaces — the i-th letter describes the i-th card of the Appleman.
Print a single integer – the answer to the problem.
15 10
DZFDFZDFDDDDDDF
82
6 4
YJSNPI
4
In the first test example Toastman can choose nine cards with letter D and one additional card with any letter. For each card with D he will get 9 coins and for the additional card he will get 1 coin.
题意 :一共n个大写字母,从中挑出k个,这k个中的对于每个字母来说,有x个字母都为该字母,那最后的值就加上x,问最后怎么选这k个字母使得最后的值最大。
思路 :贪心,哈希一下,排序,然后从最多的开始找,要注意,这个题卡long long 。。。。。因为中间结果可能会超什么的。。。。要注意。。。。
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <stdlib.h>
#include <algorithm> using namespace std ; char sh[] ;
long long hashh[] ; int main()
{
long long n , k ;
// freopen("1234.txt","r",stdin) ;
// freopen("1234.txt","w",stdout) ;
while(~scanf("%I64d %I64d",&n,&k))
{
scanf("%s",sh) ;
memset(hashh,,sizeof(hashh)) ;
for(int i = ; i < n ; i++)
{
hashh[sh[i]-'A'] ++ ;
}
sort(hashh,hashh+) ;
long long sum = ;
for(long long i = k ,j = ; i > ; )
{
if(hashh[j] <= i)
{
sum += hashh[j]*hashh[j] ;
i -= hashh[j] ;
}
else
{
sum += i*i ;
i = ;
}
j-- ;
}
printf("%I64d\n",sum) ;
}
return ;
}
C. Appleman and Toastman
time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output
Appleman and Toastman play a game. Initially Appleman gives one group of n numbers to the Toastman, then they start to complete the following tasks:
- Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman.
- Each time Appleman gets a group consisting of a single number, he throws this group out. Each time Appleman gets a group consisting of more than one number, he splits the group into two non-empty groups (he can do it in any way) and gives each of them to Toastman.
After guys complete all the tasks they look at the score value. What is the maximum possible value of score they can get?
The first line contains a single integer n (1 ≤ n ≤ 3·105). The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
3
3 1 5
26
1
10
10
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and gives the group to Appleman (he will throw it out). When Toastman receives group [3, 5], he adds 8 to the score and gives the group to Appleman. Appleman splits [3, 5] in the only possible way: [5] and [3]. Then he gives both groups to Toastman. When Toastman receives [5], he adds 5 to the score and gives the group to Appleman (he will throws it out). When Toastman receives [3], he adds 3 to the score and gives the group to Appleman (he will throws it out). Finally Toastman have added 9 + 1 + 8 + 5 + 3 = 26 to the score. This is the optimal sequence of actions.
题意 :给T一个数组,然后他把所有的值加起来加到最后的值上,然后把这个数组给A,如果A收到的数组只有一个数,那就把这个值扔掉。否则的话A就把这个数组分成两个再送给T,然后T再把和加到最后的值上。。。。循环往复,问最后得到的最大值是多少。
思路 : 其实就是排一下序,然后每次把最小的分出去,最后统计一下每个值被加过的次数,发现最后一个是n次,倒数第二个也是n次,第一个是2次,第二个是3次,第三个是4次,第四个是5次。。。。。
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#define LL long long using namespace std ; LL n ;
LL a[] ; int main()
{
while(~scanf("%I64d",&n))
{
for(int i = ; i <= n ; i++)
{
scanf("%I64d",&a[i]) ;
}
LL ans = ;
sort(a+,a+n+) ;
for(int i = ; i < n ; i++)
{
ans += a[i] * (i+) ;
// printf("sum = %I64d\n",a[i]*(i+1)) ;
// printf("ans = %I64d\n",ans) ;
}
ans += n * a[n] ;
printf("%I64d\n",ans) ;
}
return ;
}
Codeforces Round #263 (Div. 2) A B C的更多相关文章
- 贪心 Codeforces Round #263 (Div. 2) C. Appleman and Toastman
题目传送门 /* 贪心:每次把一个丢掉,选择最小的.累加求和,重复n-1次 */ /************************************************ Author :R ...
- Codeforces Round #263 (Div. 2)
吐槽:一辈子要在DIV 2混了. A,B,C都是简单题,看AC人数就知道了. A:如果我们定义数组为N*N的话就不用考虑边界了 #include<iostream> #include &l ...
- Codeforces Round #263 (Div. 1)
B 树形dp 组合的思想. Z队长的思路. dp[i][1]表示以i为跟结点的子树向上贡献1个的方案,dp[i][0]表示以i为跟结点的子树向上贡献0个的方案. 如果当前为叶子节点,dp[i][0] ...
- Codeforces Round #263 Div.1 B Appleman and Tree --树形DP【转】
题意:给了一棵树以及每个节点的颜色,1代表黑,0代表白,求将这棵树拆成k棵树,使得每棵树恰好有一个黑色节点的方法数 解法:树形DP问题.定义: dp[u][0]表示以u为根的子树对父亲的贡献为0 dp ...
- Codeforces Round #263 (Div. 2) D. Appleman and Tree(树形DP)
题目链接 D. Appleman and Tree time limit per test :2 seconds memory limit per test: 256 megabytes input ...
- Codeforces Round #263 (Div. 1) C. Appleman and a Sheet of Paper 树状数组暴力更新
C. Appleman and a Sheet of Paper Appleman has a very big sheet of paper. This sheet has a form of ...
- Codeforces Round #263 (Div. 2) proC
题目: C. Appleman and Toastman time limit per test 2 seconds memory limit per test 256 megabytes input ...
- Codeforces Round #263 (Div. 2)C(贪心,联想到huffman算法)
数学家伯利亚在<怎样解题>里说过的解题步骤第二步就是迅速想到与该题有关的原型题.(积累的重要性!) 对于这道题,可以发现其实和huffman算法的思想很相似(可能出题人就是照着改编的).当 ...
- Codeforces Round #263 (Div. 2) proB
题目: B. Appleman and Card Game time limit per test 1 second memory limit per test 256 megabytes input ...
随机推荐
- hdu 5224 Tom and paper
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5224 Tom and paper Description There is a piece of pa ...
- bash: 避免命令重复执行的简单脚本
1. 根据命令生成md5做为文件名保存当前进程的pid2. 使用exec执行命令3. 如果再次执行, 使用ps -p检测上次pid是否有效, 如果是则exit 200.否则重复1.hadoop@ubu ...
- OSGi在淘宝内部的使用
现在基本不怎么用了,OSGi主要的价值,在实际中体现得不太明显 比如类隔离,用更简单的自定义ClassLoader也可以实现:单机多版本服务,用的场景也很少:热部署也不是很实用 但是,基于OSGi框架 ...
- 转Oracle字符集问题总结
Oracle字符集问题总结 分类: Oracle2006-06-04 13:48 1298人阅读 评论(3) 收藏 举报 oracle数据库sqlcharacter存储insert 作者: vston ...
- OpenGL学习笔记之配置OpenGL
OpenGL是计算机图形学领域的一门入门语言,OpenGL开发库的一些文件在官网上可以下载到.里面包含三个文件,如下: 1.把在OpenGL开发库中LIB(库文件)glut.lib和glut32.li ...
- mysql安装/启动报错汇总
2016/9/6补充 初始化报错: # /usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysq ...
- Xcode 7遇到 App Transport Security has blocked a cleartext HTTP 错误
今天用Xcode 7 创建新项目用到 URL 发送请求时,报下面的错: “App Transport Security has blocked a cleartext HTTP (http://) r ...
- 20145129 《Java程序设计》第8周学习总结
20145129 <Java程序设计>第8周学习总结 教材学习内容总结 NIO NIO使用频道(channel)来衔接数据节点,对数据区的标记提供了clear(),rewind(),fli ...
- 小学生四则运算C/C++编程设计思想
题目: 1.题目避免重复: 2.可定制(数量(打印方式)): 3.可控制下列参数:是否有乘除法.是否有括号.数值范围.加减有无负数. 除法有无余数.是否支持分 ...
- Java应用的优秀管理工具Maven的下载安装及配置
1.进入Maven的官方下载地址:http://maven.apache.org/download.cgi 2.向下滚动页面,点击这个zip包进行下载: 3.将压缩包解压后剪切到Mac的某个目录下就完 ...