Codeforces Round#1
A. Theatre Square
题目大意:有一个长宽为m和n的广场,用边长为a的正方形去铺盖,问铺满最少需要多少正方形
题解:题目分解为用长度为a的线条分别去覆盖长度为m和n的线条,计算两者的乘积就是答案,在计算时注意整除的情况以及需要开long long防止相乘时范围越界。
#include <iostream>
using namespace std;
int main(){
long long n,a,m,p1,p2;
cin>>n>>m>>a;
if(n%a)p1=n/a+1; else p1=n/a;
if(m%a)p2=m/a+1; else p2=m/a;
cout<<p1*p2<<endl;
return 0;
}
B. Spreadsheet
题目大意:给出两种表达式,根据规则相互转化:一种是RXCY,一种是(字母)(数字),其中第一种变成第二种就是把X原封不动地拿回来,然后Y数字转化为数字,转化规则是,A-Z:1-26,AA-AZ:27-52,BA-BZ……依此类推,比如R23C55就可以转化成BC23。
题解:进制转化类的问题,注意转化方式特殊,在转化中刚好可以整除时需要特判,此外,首先对于原码格式的判断也要注意,我选择的标志是R和C还有数字的位置。
#include <cstdio>
#include <cstring>
using namespace std;
char s[1000005],l;
void change(){
int f=0,res=0,res1=0;
for(int i=0;i<l;i++){
if(s[i]>='A'&&s[i]<='Z'){res=res*26+s[i]-'A'+1;}
else{f=i;break;}
}for(int i=f;i<l;i++)res1=res1*10+s[i]-'0';
printf("R%dC%d\n",res1,res);
}
void change1(){
int res=0,res1=0,f=0,x[10005];x[0]=0;
for(int i=1;i<l;i++){
if(s[i]>='A'&&s[i]<='Z'){f=i;break;}
else{res=res*10+s[i]-'0';}
}for(int i=f+1;i<l;i++)res1=res1*10+s[i]-'0';
while(res1){
if(res1%26==0){x[++x[0]]=26;res1-=26;res1/=26;}
else{x[++x[0]]=res1%26;res1/=26;}
}for(int i=x[0];i;i--)printf("%c",'A'+x[i]-1);
printf("%d\n",res);
}
int main(int T){
scanf("%d",&T);
while(T--){
scanf(" %s",s);
int flag=1; l=strlen(s);
if(s[0]=='R'){
if(s[1]>='A'&&s[1]<='Z'){flag=1;}
else for(int i=2;i<l;i++)if(s[i]=='C'){flag=0;}
}if(flag){change();}else change1();
}return 0;
}
C. Ancient Berland Circus
题目大意:给出一个正多边形上的三个点,求这个正多边形的最小面积。
题解:由给出的三个点,可以得出这个三角形的外接圆,即这个多边形的外接圆。根据三边计算对应的圆心角,求出它们的最大公约数,就可以得到多边形的边数,有了半径和边数,就可以计算出相应的面积了,需要注意的是,在计算最长边的圆心角时,考虑钝角的问题,所以用剩余的两个小角去计算。
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
using namespace std;
const double EPS=0.01;
const double PI=3.1415926535897932384626;
double gcd(double a,double b){return b<EPS?a:gcd(b,fmod(a,b));}
double dist(double x1,double y1,double x2,double y2){return sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));}
int main(){
double a[3],A[3],p,c,x1,x2,x3,y1,y2,y3,s,r,k;
scanf("%lf%lf%lf%lf%lf%lf",&x1,&y1,&x2,&y2,&x3,&y3);
a[0]=dist(x1,y1,x2,y2);a[1]=dist(x1,y1,x3,y3);a[2]=dist(x2,y2,x3,y3);
sort(a,a+3); p=(a[0]+a[1]+a[2])/2.0;
s=sqrt(p*(p-a[0])*(p-a[1])*(p-a[2]));
r=a[0]*a[1]*a[2]/(4*s);
A[0]=2*asin(a[0]/(2*r));
A[1]=2*asin(a[1]/(2*r));
A[2]=2*PI-A[1]-A[0];
p=gcd(A[2],gcd(A[1],A[0]));
printf("%.6lf\n",(PI*r*r*sin(p))/p);
return 0;
}
Codeforces Round#1的更多相关文章
- Codeforces Round #366 (Div. 2) ABC
Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...
- Codeforces Round #354 (Div. 2) ABCD
Codeforces Round #354 (Div. 2) Problems # Name A Nicholas and Permutation standard input/out ...
- Codeforces Round #368 (Div. 2)
直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...
- cf之路,1,Codeforces Round #345 (Div. 2)
cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅..... ...
- Codeforces Round #279 (Div. 2) ABCDE
Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems # Name A Team Olympiad standard input/outpu ...
- Codeforces Round #262 (Div. 2) 1003
Codeforces Round #262 (Div. 2) 1003 C. Present time limit per test 2 seconds memory limit per test 2 ...
- Codeforces Round #262 (Div. 2) 1004
Codeforces Round #262 (Div. 2) 1004 D. Little Victor and Set time limit per test 1 second memory lim ...
- Codeforces Round #370 - #379 (Div. 2)
题意: 思路: Codeforces Round #370(Solved: 4 out of 5) A - Memory and Crow 题意:有一个序列,然后对每一个进行ai = bi - bi ...
- Codeforces Round #371 (Div. 1)
A: 题目大意: 在一个multiset中要求支持3种操作: 1.增加一个数 2.删去一个数 3.给出一个01序列,问multiset中有多少这样的数,把它的十进制表示中的奇数改成1,偶数改成0后和给 ...
- Codeforces Round #284 (Div. 2)A B C 模拟 数学
A. Watching a movie time limit per test 1 second memory limit per test 256 megabytes input standard ...
随机推荐
- ecshop开发日志之手机端虚拟商品自动发货
在ecshop官方模版收,web端的虚拟商品购买后不能像pc端那般直接在付款后出现虚拟商品的卡号,密码,截止日期一下为让手机购买也可以在付款后自动显示发货并能显示卡号密码截止日期首 先找到pc端的fl ...
- Struts2中ModelDriven的使用
它是Struts2种独有的一种接收用户输入的机制,想在项目中使用模型驱动 (ModelDriven)需要让Action实现com.opensymphony.xwork2.ModelDriven 接口, ...
- jQuery相关知识
1.jQuery中$符号有何作用? $作为jQuery的别名,如$(document).ready() 即是 jQuery(document).ready() 2.jQuery选择器有哪几种? 基本选 ...
- Ajax访问PHP页面出现的跨域问题
1.跨域问题:简单来说就是A域名下的程序想从B域名下的文件里面获取信息(这句话是我上网看到的) 2.一般请求(本地测试): 请求页 响应页 这样做是没问题的. 但我如果将Ajax请求的url ...
- client|server 最简单的聊天
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <sys/socket ...
- rownum的使用-分页
rownum的使用-分页 oracle分页显示方法 一.使用rownum分页显示方式 方式1:SELECT * FROM (SELECT ROWNUM r, a.* FROM b$i_exch_in ...
- 立体像对DEM提取
版权声明:本教程涉及到的数据仅练习使用,禁止用于商业用途. 目录 1.概述 2.详细操作步骤 第一步:输入立体像对 第二步:定义地面控制点 第三步:定义连接点 第四步:设定DEM提取参数 第五步:输出 ...
- PHP 操作redis 详细讲解转的
http://www.cnblogs.com/jackluo/p/3412670.html phpredis是redis的php的一个扩展,效率是相当高有链表排序功能,对创建内存级的模块业务关系 很有 ...
- Walking Ant(bfs)
Walking Ant Time Limit: 2 Seconds Memory Limit: 65536 KB Ants are quite diligent. They sometime ...
- ACdream群赛1112(Alice and Bob)
题意:http://acdream.info/problem?pid=1112 Problem Description Here is Alice and Bob again ! Alice and ...