A. Amr and Music (贪心)

水题,没能秒切,略尴尬。

 #include <cstdio>
#include <algorithm>
using namespace std; const int maxn = +;
int a[maxn], r[maxn], ans[maxn]; int cmp(int i, int j) { return a[i] < a[j]; } int main()
{
//freopen("in.txt", "r", stdin); int n, k;
scanf("%d%d", &n, &k);
for(int i = ; i < n; ++i) r[i] = i;
for(int i = ; i < n; ++i) scanf("%d", &a[i]);
sort(r, r + n, cmp);
int sum = , cnt = ;
for(int i = ; sum + a[r[i]] <= k && cnt < n; ++i)
{
sum += a[r[i]];
ans[cnt++] = r[i];
} printf("%d\n", cnt);
for(int i = ; i < cnt - ; ++i) printf("%d ", ans[i]+);
if(cnt) printf("%d\n", ans[cnt-]+); return ;
}

代码君

B. Amr and Pins (找规律)

题意:

给出一个圆的半径 和 圆心的始末位置。每次操作只能绕圆周上的点旋转若干角度。求该圆从初位置到末位置最少的操作次数。

分析:

不妨设圆的半径为r,圆心在原点处。

先看只旋转一次的情况,圆心所有可能位置构成的区域为  半径为2r的圆(除去圆心那点),也可理解为半径为(0, 2r]的圆环区域

再看第二次旋转,其区域为半径在(2r, 4r]的圆环区域。  //这个不容易画图,自行脑补一下好啦

以此类推。

算法:

所以我们可以先算出圆心始末位置间的距离d,然后根据d和直径2r的关系,最终答案为

 #include <cstdio>
#include <cmath> int main()
{
//freopen("in.txt", "r", stdin); int r, x1, y1, x2, y2, ans;
scanf("%d%d%d%d%d", &r, &x1, &y1, &x2, &y2);
double d = sqrt((long long)(x1-x2)*(x1-x2) + (long long)(y1-y2)*(y1-y2));
ans = (int)ceil(d / 2.0 / r);
printf("%d\n", ans); return ;
}

代码君

C. Guess Your Way Out! (模拟 LCA)

题意:

有一个树高为h的完全二叉树 和 一个目标叶子节点, 给出一种遍历方式(LRLRLR...)

求在到达目标节点时,遍历节点的总数。(不包括目标节点)

具体参见原文Guess Your Way Out!

分析:

以官方题解中的图为例。自己最开始对这道题没什么想法,所以后面的分析相当于题解的翻译。=_=||

从树根开始走到最底端,到达节点X。

如果X刚好是目标节点E,则得到结果为树高h。

否则,找到X和E的 Least Common Ancestor (最小公共祖先)。在右子树遍历之前,一定会遍历完左子树中所有的节点 (图中用红色标出) ,从而退出,进入右子树。

所以在到达右子树之前共遍历sum[h1] + h - h1,其中sum[h1]表示树高为h1的完全二叉树的节点个数。

在进入右子树后,更新树高h、根节点编号、遍历的方向(L or R),重复刚才的过程。

 #include <cstdio>
#include <vector>
#include <algorithm>
using namespace std; typedef long long LL; LL h, n, sum[], ans = ;
vector<LL> anc1; int main()
{
//freopen("in.txt", "r", stdin); for(int i = ; i <= ; ++i) sum[i] = (1LL << (i+)) - ;
scanf("%I64d%I64d", &h, &n);
n += sum[h-]; //转化成整个二叉树中的编号
LL x = n;
anc1.push_back(x); //目标节点的所有祖先
while(x != )
{
x /= ;
anc1.push_back(x);
}
//for(int i = 0; i < anc1.size(); ++i) printf("%I64d ", anc1[i]); LL node = ;
bool choice = false; //遍历防线(L or R) while(node != n)
{
vector<LL> anc2; //当前叶子节点X的祖先
for(int i = ; i < h; ++i)
{
anc2.push_back(node);
if(!choice) node = node * ; else node = node * + ;
choice = !choice;
}
if(n == node) { ans += h; break; }
anc2.push_back(node);
reverse(anc2.begin(), anc2.end());
//for(int i = 0; i < anc2.size(); ++i) printf("%I64d ", anc2[i]); for(int i = ; i <= h; ++i) if(anc1[i] == anc2[i])
{//find LCA
ans += sum[i-] + h - i + ;
h = i - ; //更新树高
node = anc2[i-];
if((anc2[i]<<) == node) //更新根节点的编号 及 遍历方向
{
node = anc2[i] * + ;
choice = false;
}
else
{
node = (anc2[i] << );
choice = true;
}
break;
}
} printf("%I64d\n", ans); return ;
}

代码君

CodeForces Round #287 Div.2的更多相关文章

  1. Codeforces Round #287 (Div. 2) E. Breaking Good 最短路

    题目链接: http://codeforces.com/problemset/problem/507/E E. Breaking Good time limit per test2 secondsme ...

  2. 贪心 Codeforces Round #287 (Div. 2) A. Amr and Music

    题目传送门 /* 贪心水题 */ #include <cstdio> #include <algorithm> #include <iostream> #inclu ...

  3. Codeforces Round #287 (Div. 2) C. Guess Your Way Out! 思路

    C. Guess Your Way Out! time limit per test 1 second memory limit per test 256 megabytes input standa ...

  4. Codeforces Round #287 (Div. 2) C. Guess Your Way Out! 水题

    C. Guess Your Way Out! time limit per test 1 second memory limit per test 256 megabytes input standa ...

  5. Codeforces Round #287 (Div. 2) B. Amr and Pins 水题

    B. Amr and Pins time limit per test 1 second memory limit per test 256 megabytes input standard inpu ...

  6. Codeforces Round #287 (Div. 2) A. Amr and Music 水题

    A. Amr and Music time limit per test 1 second memory limit per test 256 megabytes input standard inp ...

  7. Codeforces Round #287 (Div. 2) E. Breaking Good [Dijkstra 最短路 优先队列]

    传送门 E. Breaking Good time limit per test 2 seconds memory limit per test 256 megabytes input standar ...

  8. Codeforces Round #287 (Div. 2) D. The Maths Lecture [数位dp]

    传送门 D. The Maths Lecture time limit per test 1 second memory limit per test 256 megabytes input stan ...

  9. codeforcfes Codeforces Round #287 (Div. 2) B. Amr and Pins

    B. Amr and Pins time limit per test 1 second memory limit per test 256 megabytes input standard inpu ...

随机推荐

  1. VB6-操作数据库

    平常搞数据库操作多了就想把经常用的内容放在一起,我也懒,在一本书里的工程例子挑了一个bas,修修改改,凑合这用吧. Public strCnn As String '数据库连接字符串 Public A ...

  2. QT定制有标题的扁平化下拉框控件

    关键字:QT,QComboBox,QLineEdit,QListView,QPushButton,QMenu,QWidgetAction,setStyleSheet OS:Windows 7 方法一: ...

  3. PyQt4学习记录之事件和信号

    事件是任何 GUI程序中很重要的部分.所有 Python GUI 应用都是事件驱动的.一个应用对其生命期产生的不同的事件类型做出反应.事件是主要由应用的用户产生.但是,也可以通过其他方法产生,比如,网 ...

  4. 【BZOJ 1911】 [Apio2010]特别行动队

    Description Input Output Sample Input 4 -1 10 -20 2 2 3 4 Sample Output 9 HINT   转移方程 f[i]=max(f[j]+ ...

  5. Mac下安装Redis图解教程

    去redis官网(http://redis.io/download)自行下载安装包解压缩到本地文件夹,比如放在Mac应用程序文件夹(/Applications/),在终端进入redis文件夹. 需要进 ...

  6. 使用Yeoman搭建 AngularJS 应用 (5) —— 让我们搭建一个网页应用

    原文地址:http://yeoman.io/codelab/scaffold-app.html 基架 (Scaffolding) 在Yeoman中的意思是为基于你特殊的配置需求,为网站程序生成文件的工 ...

  7. shell复习笔记----用户管理

    $ who    可以知道系统上有多少登陆 $who |wc -l 计算用户个数 注意:|是管道符号,可以在两个程序之间建立管道(pipeline):who 的输出,成了 wc 的输入, wc 所列出 ...

  8. 2338: [HNOI2011]数矩形 - BZOJ

    因为已经看了一眼题解,知道是算中点和长度,相同时构成一个矩形,所以就把所有的线段算出来,然后排序,相同的就更新答案 为了避免误差,我们都用整数存,中点直接相加就行了,没必要除2,长度也只要平方就行了, ...

  9. 1050 棋盘染色 2 - Wikioi

    题目描述 Description 有一个5*N的棋盘,棋盘中的一些格子已经被染成了黑色,你的任务是对最少的格子染色,使得所有的黑色能连成一块. 输入描述 Input Description 第一行一个 ...

  10. datagridview 右键选中行 并弹出菜单

    private void dataGridView_OLUsers_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e) { i ...