CodeForces Round #516 Div2 题解
A. Make a triangle!
暴力...
就是给你三个数,你每次可以选一个加1,问最少加多少次能构成三角形
#include <bits/stdc++.h> #define ll long long
#define inf 0x3f3f3f3f
#define il inline
#define in1(a) read(a)
#define in2(a,b) in1(a),in1(b)
#define in3(a,b,c) in2(a,b),in1(c)
#define in4(a,b,c,d) in2(a,b),in2(c,d) inline void read( int &x ){
x = ; int f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} inline void readl( ll &x ){
x = ; ll f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} using namespace std ; #define N 100010 int a , b , c ; int main(){
in3( a ,b , c ) ;
if( a > b ) swap( a , b ) ;
if( b > c ) swap( b , c ) ;
if( a > c ) swap( a , c ) ;
int ans = ;
while( a + b <= c ) {
a ++ ;
ans ++ ;
if( a > b ) swap( a , b ) ;
}
printf( "%d\n" , ans ) ;
return ;
}
B. Equations of Mathematical Magic
求满足式子$a-(a\ xor\ x)-x=0$的$x$值的数量
$a<=2^{30}-1$
对于某一位的$a$和$x$
设$a$这一位上的数字为$a_i$,$x$这一位上的数字为$x_i$
对于$a_i=0$,只有$x_i=0$才成立
对于$a_i=1$,$x_i=0$或者$x_i=1$均成立
所以乘法原理乘一下就好了
ZincSabian聚聚抬了一手(orz我B题就不会了
#include <cstdio>
#include <cstring>
#include <algorithm> #define ll long long
#define inf 0x3f3f3f3f
#define il inline
#define in1(a) readl(a)
#define in2(a,b) in1(a),in1(b)
#define in3(a,b,c) in2(a,b),in1(c)
#define in4(a,b,c,d) in2(a,b),in2(c,d) inline void read( int &x ){
x = ; int f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} inline void readl( ll &x ){
x = ; ll f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} using namespace std ; #define N 100010 ll T , a ; int main() {
in1( T ) ;
while( T -- ) {
in1( a ) ;
ll cnt = ;
for( int i = ; i >= ; i -- ) {
if( a&(1ll<<i) ) cnt *= 2ll ;
}
printf( "%lld\n" , cnt ) ;
}
}
C. Oh Those Palindromes
怎么B,C都是结论题啊
C题直接把所有一样的数排在一起就好了...
因为这样确实就能排出最大的回文串了
可以找几个字符串自己写写画画一下,感性理解
#include <cstdio>
#include <cstring>
#include <algorithm> #define ll long long
#define inf 0x3f3f3f3f
#define il inline
#define in1(a) read(a)
#define in2(a,b) in1(a),in1(b)
#define in3(a,b,c) in2(a,b),in1(c)
#define in4(a,b,c,d) in2(a,b),in2(c,d) inline void read( int &x ){
x = ; int f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} inline void readl( ll &x ){
x = ; ll f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} using namespace std ; #define N 100010 int n ;
char ch[ N ] ; int main(){
in1( n ) ;
scanf( "%s" , ch+ ) ;
sort( ch+ , ch+n+ ) ;
printf( "%s" , ch+ ) ;
}
D. Labyrinth
赛时没调出来...
然后赛后3min调出来
$system\ test$ 完后交了就过了
哭...掉分了
唔...其实这题就是建两个图,对于第一个图只有向左走才会花费代价,对于第二个图只有向右走才会花费代价
然后就是码码码了,我写了$4KB$...
写的$spfa$,网格图居然没卡$spfa$...
代码可能有点丑...
将就着看吧
#include <cstdio>
#include <cstring>
#include <algorithm> #define ll long long
#define debug printf("233\n")
#define inf 0x3f3f3f3f
#define il inline
#define in1(a) read(a)
#define in2(a,b) in1(a),in1(b)
#define in3(a,b,c) in2(a,b),in1(c)
#define in4(a,b,c,d) in2(a,b),in2(c,d) inline void read( int &x ){
x = ; int f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} inline void readl( ll &x ){
x = ; ll f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} using namespace std ; #define N 2010 int n , m , r , c , x , y ;
char ch[ N ][ N ] ;
struct edge {
int to , nxt , v ;
} e[ N * N * ] , E[ N * N * ];
int head[ N * N ] , cnt , Head[ N * N ] , Cnt ;
int vis[ N * N ] , d[ N * N ] , Vis[ N * N ] , D[ N * N ] ;
int q[ ] ; void ins1( int u , int v , int w ) {
e[ ++ cnt ].to = v ;
e[ cnt ].nxt = head[ u ] ;
e[ cnt ].v = w ;
head[ u ] = cnt ;
} void ins2( int u , int v , int w ) {
E[ ++ Cnt ].to = v ;
E[ Cnt ].nxt = Head[ u ] ;
E[ Cnt ].v = w ;
Head[ u ] = Cnt ;
} void spfa() {
int s = (r-) * m + c ;
q[ ] = s ;
int l = , r = ;
for( int i = ; i <= n * m ; i ++ ) d[ i ] = inf ;
d[ s ] = ;
vis[ s ] = ;
while( l != r ) {
int u = q[ l ++ ] ;
vis[ u ] = ;
if( l == ) l = ;
for( int i = head[ u ] ; i ; i = e[ i ].nxt ) {
int v = e[ i ].to ;
if( d[ v ] > d[ u ] + e[ i ].v ) {
d[ v ] = d[ u ] + e[ i ].v ;
if( !vis[ v ] ) {
vis[ v ] = ;
q[ r ++ ] = v ;
if( r == ) r = ;
}
}
}
}
} void spfa2() {
int s = (r-) * m + c ;
int l = , r = ;
q[ ] = s ;Vis[ s ] = ;
for( int i = ; i <= n * m ; i ++ ) D[ i ] = inf ;
D[ s ] = ;
while( l != r ) {
int u = q[ l ++ ] ;
Vis[ u ] = ;
if( l == ) l = ;
for( int i = Head[ u ] ; i ; i = E[ i ].nxt ) {
int v = E[ i ].to ;
if( D[ v ] > D[ u ] + E[ i ].v ) {
D[ v ] = D[ u ] + E[ i ].v ;
if( !Vis[ v ] ) {
Vis[ v ] = ;
q[ r ++ ] = v ;
if( r == ) r = ;
}
}
}
}
} int main(){
in2( n , m ) ;
in2( r , c ) ;
in2( x , y ) ;
for( int i = ; i <= n ; i ++ ) {
scanf( "%s" , ch[ i ] + ) ;
}
for( int i = ; i <= n ; i ++ ) {
for( int j = ; j <= m ; j ++ ) {
if( ch[ i ][ j ] == '*' ) continue ;
if(i->=&&ch[i-][j]=='.') ins1((i-)*m+j,(i-)*m+j,), ins2((i-)*m+j,(i-)*m+j,);
if(j->=&&ch[i][j-]=='.') ins1((i-)*m+j,(i-)*m+j-,),ins2((i-)*m+j,(i-)*m+j-,);
if(i+<=n&&ch[i+][j]=='.') ins1((i-)*m+j,i*m+j,), ins2((i-)*m+j,i*m+j,);
if(j+<=m&&ch[i][j+]=='.') ins1((i-)*m+j,(i-)*m+j+,),ins2((i-)*m+j,(i-)*m+j+,);
}
}
spfa() ;
spfa2() ;
int ans = ;
for( int i = ; i <= n * m ; i ++ ) {
if( d[ i ] <= x && D[ i ] <= y ) ans ++ ;
}
printf( "%d\n" , ans ) ;
}
E. Dwarves, Hats and Extrasensory Abilities
这题有点思路,晚上补一下
因为题目保证了白的在一边黑的在一边
所以我们可以二分这个分界点
然后输出的时候,纵坐标随便找两个,尽量让他们连线与坐标轴成45度角那样子
反正不要太歪,我取的纵坐标是$0$和$2$
就是真的很不习惯交互的形式
#include <bits/stdc++.h> #define ll long long
#define inf 0x3f3f3f3f
#define il inline
#define in1(a) readl(a) inline void readl( ll &x ){
x = ; ll f = ; char c = getchar() ;
while( c < '' || c > '' ) {
if( c == '-' ) f = - ;
c = getchar() ;
}
while( c >= '' && c <= '' ) {
x = (x << ) + (x << ) + c - ;
c = getchar() ;
}
x *= f ;
} using namespace std ; #define N 100010 ll n ;
ll x , y ;
char s[ N ] ; int main() {
in1( n ) ;
puts( "0 0" ) ;
fflush( stdout ) ;
scanf( "%s" , s ) ;
char tmp = s[ ] ;
ll l = , r = 1e9 ;
for( int i = ; i <= n ; i ++ ) {
ll mid = ( l + r ) >> ;
printf( "%lld %lld\n" , mid , 1ll ) ;
fflush( stdout ) ;
scanf( "%s" , s ) ;
if( s[ ] == tmp ) l = mid + ;
else r = mid - ;
}
printf( "%lld 0 %lld 2\n" , l , r ) ;
}
F. Candies for Children
以后补...
CodeForces Round #516 Div2 题解的更多相关文章
- [Codeforces Round #461 (Div2)] 题解
[比赛链接] http://codeforces.com/contest/922 [题解] Problem A. Cloning Toys [算法] 当y = 0 , 不可以 当 ...
- CodeForces round 967 div2 题解(A~E)
本来准备比完赛就写题解的, 但是一拖拖了一星期, 唉 最后一题没搞懂怎么做,恳请大神指教 欢迎大家在评论区提问. A Mind the Gap 稳定版题面 https://cn.vjudge.net/ ...
- Codeforces Round #407 div2 题解【ABCDE】
Anastasia and pebbles 题意:你有两种框,每个框可以最多装k重量的物品,但是你每个框不能装不一样的物品.现在地面上有n个物品,问你最少多少次,可以把这n个物品全部装回去. 题解:其 ...
- Codeforces Round #467(Div2)题解
凌晨起来打CF,0:05,也是我第一次codeforces 第一题: 我刚开始怀疑自己读错题了,怎么会辣么水. 判除了0的数字种类 #include <cstdio> ; ]; int m ...
- Codeforces Round #516 Div2 (A~D)By cellur925
比赛传送门 A. Make a triangle! 题目大意:给你三根木棒,选出其中一根木棒增加它的长度,使构成三角形,问增加的长度最小是多少. 思路:签到题,根据样例/三角形性质不难发现,答案就是最 ...
- Codeforces Round#704 Div2 题解(A,B,C,D,E)
FST ROUND !!1 A Three swimmers: 直接整除一下向上取整就好了: #include <bits/stdc++.h> using namespace std; t ...
- Codeforces Round#687 Div2 题解
打这场的时候迷迷糊糊的,然后掉分了( A Prison Break: 题面很复杂,但是题意很简单,仅需求出从这个点到四个角的最大的曼哈顿距离即可 #include <bits/stdc++.h& ...
- Codeforces Round #539 div2
Codeforces Round #539 div2 abstract I 离散化三连 sort(pos.begin(), pos.end()); pos.erase(unique(pos.begin ...
- Codeforces Round #543 Div1题解(并不全)
Codeforces Round #543 Div1题解 Codeforces A. Diana and Liana 给定一个长度为\(m\)的序列,你可以从中删去不超过\(m-n*k\)个元素,剩下 ...
随机推荐
- Loadrunner之脚本的思考时间(固定/随机)设置、调试、保存、测试服务器监控等(六)
一.思考时间的设置 1)设置固定思考时间: Action(){ // … your code lr_think_time(3); //固定设置此处思考时间3s // … more of your co ...
- sqlserver 索引的结构及其存储,索引内容
sqlserver 索引的结构及其存储,sql server索引内容 文章转载,原文地址: http://www.cnblogs.com/panchunting/p/SQLServer_IndexSt ...
- sysbench的安装和做性能测试
sysbench的安装和做性能测试 http://imysql.cn/node/312 sysbench是一个模块化的.跨平台.多线程基准测试工具,主要用于评估测试各种不同系统参数下的数据库负载情况. ...
- [LeetCode] 243. Shortest Word Distance_Easy
Given a list of words and two words word1 and word2, return the shortest distance between these two ...
- [LeetCode] 560. Subarray Sum Equals K_Medium
Given an array of integers and an integer k, you need to find the total number of continuous subarra ...
- numpy中的广播(Broadcasting)
Numpy的Universal functions 中要求输入的数组shape是一致的,当数组的shape不相等的时候,则会使用广播机制,调整数组使得shape一样,满足规则,则可以运算,否则就出错 ...
- Python做接口自动化测试框架
框架结构如下: Test_Api_Project||---base.py|---base_api| |---register_api.py | |---send_sms_code_api.py|--- ...
- TempData["a"]多个Action方法之前共享数据
ViewData["a"]只可以在自己视图的页面里被访问,但TempData["a"]可以多个Action方法之前共享数据,比如在 @{Html.RenderA ...
- unity3d-编辑器结构
1.Porject视图 Project视图主要存放游戏中用到的所有资源文件,常见的资源包括: 游戏脚本.预设.材质.动画.自定义字体.纹理.物理材质和GUI皮肤.这些资源需要 赋予Hierarchy视 ...
- css 播放器按钮实现
效果图 html代码 //播放按钮 <div id="playBtn" class="circle" style="margin: 20px 0 ...