598A - Tricky Sum    20171103
$$ans=\frac{n(n+1)}{2} - 2\sum_{k=0}^{\left \lfloor \log_2 n \right \rfloor}{2^{k}}$$

#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
long long t,n,ans;
void init()
{
scanf("%I64d",&n);ans=n*(n+)/;
for(long long i=;i<;i++)if((1ll<<i)<=n)ans-=*(1ll<<i);
printf("%I64d\n",ans);
}
int main()
{
scanf("%I64d",&t);
for(int i=;i<t;i++)init();
return ;
}

598B - Queries on a String    20171103
设t[i]为最终来到位置i的字符的原位置,对每个位置i,倒序遍历每次操作,若有操作区间覆盖到t[i],则可以找出在这次操作之后来到位置t[i]的字符原来在哪个位置,并更新t[i]

#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int m,l[],r[],k[],t[];
string s;
int main()
{
cin>>s;
scanf("%d",&m);
for(int i=;i<=m;i++)
scanf("%d%d%d",&l[i],&r[i],&k[i]),l[i]--,r[i]--;
for(int i=;i<s.size();i++)
{
t[i]=i;
for(int j=m;j>=;j--)
if(l[j]<=t[i] && t[i]<=r[j] && l[j]<r[j])
t[i]=(t[i]-l[j]+r[j]-l[j]+-k[j]%(r[j]-l[j]+))%(r[j]-l[j]+)+l[j];
}
for(int i=;i<s.size();i++)printf("%c",s[t[i]]);
return ;
}

598C - Nearest vectors    20171103

对每个坐标对应的辐角进行排序,显然最小的夹角是来自相邻的两项,O(n)扫一遍即可

#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define pi acos(-1.0)
struct rua
{
long double angle;
int id;
}a[];
int n,ans1,ans2;long double x,y,m,_;
bool cmp(rua A,rua B){return A.angle<B.angle;}
int main()
{
scanf("%d",&n);
m=;
for(int i=;i<n;i++)
{
cin>>x>>y;
a[i].angle=atan2(y,x);
a[i].id=i;
}
sort(a,a+n,cmp);
for(int i=;i<n;i++)
{
_=a[(i+)%n].angle-a[i].angle;
if(_<)_+=*pi;
if(_<m)m=_,ans1=a[i].id+,ans2=a[(i+)%n].id+;
}
printf("%d %d\n",ans1,ans2);
return ;
}

598D - Igor In the Museum    20171103

简单并查集,预处理每个区域能看到的壁画数量即可

#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
struct rua
{
int x,y;
}fa[][];
int n,m,k,x,y,ans[][];
char s[][];
char read()
{
char ch=getchar();
while(ch!='.' && ch!='*')
ch=getchar();
return ch;
}
rua Find(int x,int y)
{
if(fa[x][y].x==x && fa[x][y].y==y)return fa[x][y];
else return fa[x][y]=Find(fa[x][y].x,fa[x][y].y);
}
void Union(int xx,int xy,int yx,int yy)
{
fa[Find(xx,xy).x][Find(xx,xy).y]=Find(yx,yy);
}
int calc(int i,int j)
{
int _=;
_+=s[i-][j]=='*';
_+=s[i+][j]=='*';
_+=s[i][j+]=='*';
_+=s[i][j-]=='*';
return _;
}
int main()
{
scanf("%d%d%d",&n,&m,&k);
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
s[i][j]=read();
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
fa[i][j].x=i,fa[i][j].y=j;
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
{
if(s[i][j]=='*')continue;
if(s[i-][j]=='.')Union(i,j,i-,j);
if(s[i][j-]=='.')Union(i,j,i,j-);
}
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
fa[i][j]=Find(i,j);
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
if(s[i][j]=='.')
ans[fa[i][j].x][fa[i][j].y]+=calc(i,j);
for(int i=;i<=k;i++)
scanf("%d%d",&x,&y),printf("%d\n",ans[Find(x,y).x][Find(x,y).y]);
return ;
}

598E - Chocolate Bar    20171108

设f[n][m][k]为对应答案,考虑横切竖切的所有情况,记忆化搜索就好了

#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int T,n,m,k,f[][][];
int dfs(int n,int m,int k)
{
if(k==n*m || f[n][m][k] || !k)return f[n][m][k];
int ans=;
for(int i=;i<=n-i;i++)
for(int j=;j<=k;j++)
ans=min(ans,dfs(i,m,j)+dfs(n-i,m,k-j)+m*m);
for(int i=;i<=m-i;i++)
for(int j=;j<=k;j++)
ans=min(ans,dfs(n,i,j)+dfs(n,m-i,k-j)+n*n);
return f[n][m][k]=ans;
}
int main()
{
scanf("%d",&T);
for(int i=;i<=T;i++)
{
scanf("%d%d%d",&n,&m,&k);
printf("%d\n",dfs(n,m,k));
}
return ;
}

598F - Cut Length    20180831

学长的模板真是好用,在模板下面加了几行就过了_(:з」∠)_

贴个链接 http://zjhl2.is-programmer.com/posts/210807.html

/*
学长的模板
*/
LINE l;
int n,m;
POLYGON rua;
int main()
{
scanf("%d%d",&n,&m);
rua.read(n);
while(m--)
l.read(),printf("%.6lf\n",(double)rua.cutlength(l));
return ;
}

Educational Codeforces Round 1的更多相关文章

  1. [Educational Codeforces Round 16]E. Generate a String

    [Educational Codeforces Round 16]E. Generate a String 试题描述 zscoder wants to generate an input file f ...

  2. [Educational Codeforces Round 16]D. Two Arithmetic Progressions

    [Educational Codeforces Round 16]D. Two Arithmetic Progressions 试题描述 You are given two arithmetic pr ...

  3. [Educational Codeforces Round 16]C. Magic Odd Square

    [Educational Codeforces Round 16]C. Magic Odd Square 试题描述 Find an n × n matrix with different number ...

  4. [Educational Codeforces Round 16]B. Optimal Point on a Line

    [Educational Codeforces Round 16]B. Optimal Point on a Line 试题描述 You are given n points on a line wi ...

  5. [Educational Codeforces Round 16]A. King Moves

    [Educational Codeforces Round 16]A. King Moves 试题描述 The only king stands on the standard chess board ...

  6. Educational Codeforces Round 6 C. Pearls in a Row

    Educational Codeforces Round 6 C. Pearls in a Row 题意:一个3e5范围的序列:要你分成最多数量的子序列,其中子序列必须是只有两个数相同, 其余的数只能 ...

  7. Educational Codeforces Round 9

    Educational Codeforces Round 9 Longest Subsequence 题目描述:给出一个序列,从中抽出若干个数,使它们的公倍数小于等于\(m\),问最多能抽出多少个数, ...

  8. Educational Codeforces Round 37

    Educational Codeforces Round 37 这场有点炸,题目比较水,但只做了3题QAQ.还是实力不够啊! 写下题解算了--(写的比较粗糙,细节或者bug可以私聊2333) A. W ...

  9. Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship Time Limit: 2000 mSec P ...

  10. Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems(动态规划+矩阵快速幂)

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems Time Limit: 3000 mSec P ...

随机推荐

  1. 如何给webbrowser指定IE版本

    void Button1Click(object sender, EventArgs e)     {         RegistryKey rk = Registry.LocalMachine; ...

  2. Adding a custom jar as a maven dependency

    Using maven in a Java project is great. It manages builds (as customized as you may need), execution ...

  3. netty中的ChannelHandler和ChannelPipeline

    netty中的ChannelHandler和ChannelPipeline ChannelHandler 家族 https://www.w3cschool.cn/essential_netty_in_ ...

  4. Python 汉字转拼音

    本文参考: Python中文转拼音代码(支持全拼和首字母缩写) 中文中不可以有“()” # -*- coding: utf-8 -*- __version__ = '0.9' __all__ = [& ...

  5. shell编程学习笔记(九):Shell中的case条件判断

    除了可以使用if条件判断,还可以使用case 以下蓝色字体部分为Linux命令,红色字体的内容为输出的内容: # cd /opt/scripts # vim script08.sh 开始编写scrip ...

  6. 一步步教你轻松学关联规则Apriori算法

    一步步教你轻松学关联规则Apriori算法 (白宁超 2018年10月22日09:51:05) 摘要:先验算法(Apriori Algorithm)是关联规则学习的经典算法之一,常常应用在商业等诸多领 ...

  7. github上总结的python资源列表【转】

    Python 资源大全中文版 我想很多程序员应该记得 GitHub 上有一个 Awesome - XXX 系列的资源整理.awesome-python 是 vinta 发起维护的 Python 资源列 ...

  8. dos命令大全 黑客必知的DOS命令集合

    dos命令大全 黑客必知的DOS命令集合 一般来说dos命令都是在dos程序中进行的,如果电脑中安装有dos程序可以从开机选项中选择进入,在windows 系统中我们还可以从开始运行中输入cmd命令进 ...

  9. 生成建表脚本up_CreateTable

    已经很久没用使用这个脚本了,今天用到,并做修改,增加了生成扩展属性功能. Go if object_ID('[up_CreateTable]') is not null Drop Procedure ...

  10. FFmpeg: 一个简单测试手机解码效率的方法

    先写一个获取当前时间戳的方法 long long GetNowMs() { struct timeval tv; gettimeofday(&tv, NULL); ; // 为了简化计算,否则 ...