Codeforces Round #269 (Div. 2) A B C

时间:2023-01-12 10:46:06

先说C

题目链接:http://codeforces.com/problemset/problem/471/C

题目意思:有 n 张卡,问能做成多少种不同楼层(floor)的 house。注意这 n 张卡都要用光。每层 floor 都由一定的 room 构成,每两个相邻 room 规定要有一个公共的ceiling。规定从上到下看,每层 floor 的 room 的数量呈递增的形式排布。

这样的东西一般就是看图,先自己从小数開始推算找规律 能够发现第i层须要(3*i+2)个,那么前i层总的最少须要就是等差数列求和得(3*i+1)*i/2。  由于不能剩余。那么n-(3*i+1)*i/2必须能被3整除。那么从1到(3*i+1)*i/2<=n遍历一下即可 n=10^12  所以O(1e6)时间还是够的

//#pragma comment(linker, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <map>
#include <set>
#include <queue>
using namespace std; #define ls(rt) rt*2
#define rs(rt) rt*2+1
#define ll long long
#define ull unsigned long long
#define rep(i,s,e) for(int i=s;i<e;i++)
#define repe(i,s,e) for(int i=s;i<=e;i++)
#define CL(a,b) memset(a,b,sizeof(a))
#define IN(s) freopen(s,"r",stdin)
#define OUT(s) freopen(s,"w",stdout)
const ll ll_INF = ((ull)(-1))>>1;
const double EPS = 1e-8;
const double pi = acos(-1.0);
const int INF = 100000000; int main()
{
ll n;
while(~scanf("%I64d",&n))
{
ll ans=0,tmp;
for(ll i=1;(tmp=(3*i+1)*i/2)<=n;i++)
{
if( ( n-tmp )%3 == 0)
ans++;
}
printf("%I64d\n",ans);
}
return 0;
}

B,  首先能不能出现三种以上的排列,写代码时用了类似离散化的写法,能的话  就随便改两个数的次序就能凑够3种

//#pragma comment(linker, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <map>
#include <set>
#include <queue>
using namespace std; #define ls(rt) rt*2
#define rs(rt) rt*2+1
#define ll long long
#define ull unsigned long long
#define rep(i,s,e) for(int i=s;i<e;i++)
#define repe(i,s,e) for(int i=s;i<=e;i++)
#define CL(a,b) memset(a,b,sizeof(a))
#define IN(s) freopen(s,"r",stdin)
#define OUT(s) freopen(s,"w",stdout)
const ll ll_INF = ((ull)(-1))>>1;
const double EPS = 1e-8;
const double pi = acos(-1.0);
const int INF = 100000000; const int MAXN = 2000+20;
struct Node{
int id,v;
}p[MAXN];
int n;
bool cmp(Node a, Node b)
{
return a.v<b.v;
} void print()
{
printf("%d",p[1].id);
for(int i=2;i<=n;i++)
printf(" %d",p[i].id);
putchar('\n');
} void SW(Node &a, Node &b)
{
Node tmp;
tmp=a;
a=b;
b=tmp;
} int main()
{ while(~scanf("%d",&n))
{
for(int i=1;i<=n;i++)
{
scanf("%d",&p[i].v);
p[i].id=i;
}
sort(p+1,p+n+1,cmp);
p[n+1].v=-1;
int tmp=1,pre=p[1].v;
ll cnt=1;
int flag=0;
for(int i=2;i<=n+1;i++)
if(pre!=p[i].v)
{
if(tmp>=3){flag=1;break;}
cnt*=tmp;
if(cnt>=3){flag=1;break;}
tmp=1;
pre=p[i].v;
}
else
{
tmp++;
}
if(!flag)puts("NO");
else
{
puts("YES");
print();
int pr=p[1].v,tmp=1;
int cnt=1;
for(int i=2;i<=n+1;i++)///
if(pr!=p[i].v)
{
if(tmp==2)
{
SW(p[i-1],p[i-2]);
if(cnt<3)print(),cnt++;; }
if(tmp >= 3)
{
SW(p[i-1],p[i-2]);
if(cnt<3) print(),cnt++;
//cnt++;
SW(p[i-1],p[i-3]);
if(cnt<3)print(),cnt++;
//cnt++;
}
if(cnt >=3)break;
tmp=1;
pr=p[i].v;
}
else
{
tmp++;
}
}
}
return 0;
}

A  水  只是由于flag少写了一个 WA了一次

//#pragma comment(linker, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <map>
#include <set>
#include <queue>
using namespace std; #define ls(rt) rt*2
#define rs(rt) rt*2+1
#define ll long long
#define ull unsigned long long
#define rep(i,s,e) for(int i=s;i<e;i++)
#define repe(i,s,e) for(int i=s;i<=e;i++)
#define CL(a,b) memset(a,b,sizeof(a))
#define IN(s) freopen(s,"r",stdin)
#define OUT(s) freopen(s,"w",stdout)
const ll ll_INF = ((ull)(-1))>>1;
const double EPS = 1e-8;
const double pi = acos(-1.0);
const int INF = 100000000; int len[10],vis[12]; int main()
{
while(~scanf("%d%d%d%d%d%d",len,len+1,len+2,len+3,len+4,len+5))
{
int ans=0;
CL(vis,0);
sort(len,len+6);
int cnt=0,flag=0;
for(int i=0;i<6;i++)
{
vis[len[i]]++;
if(vis[len[i]] == 4)cnt=i,flag=1;
}
if(vis[len[cnt]] == 5)
{
puts("Bear");
continue;
}
if(vis[len[cnt]] == 6)
{
puts("Elephant");
continue;
}
int last=-1,ff=0;
for(int i=0;i<6;i++)
if(i!=cnt)
{
if(vis[len[i]] == 2)ff=1;
if(last==-1){len[0]=len[i];last=1;}
else len[5]=len[i];
}
if(ff && flag)
{
puts("Elephant");
continue;
}
if(len[0]!=len[5] && flag)
{
puts("Bear");
continue;
}
if(len[0]==len[5] && flag)
{
puts("Elephant");
continue;
}
puts("Alien");
}
return 0;
}

Codeforces Round #269 (Div. 2) A B C的更多相关文章

  1. Codeforces Round &num;269 &lpar;Div&period; 2&rpar; A&comma;B&comma;C&comma;D

    CodeForces - 471A 首先要有四个数相等,然后剩下两个数不同就是Bear,否则就是Elephant. #include <bits/stdc++.h> using names ...

  2. Codeforces Round &num;269 &lpar;Div&period; 2&rpar; D - MUH and Cube Walls kmp

    D - MUH and Cube Walls Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & % ...

  3. Codeforces Round &num;269 &lpar;Div&period; 2&rpar;

    A 题意:给出6根木棍,如果有4根相同,2根不同,则构成“bear”,如果剩余两个相同,则构成“elephant” 用一个数组分别储存各个数字出现的次数,再判断即可 注意hash[i]==5的时候,也 ...

  4. Codeforces Round &num;269 &lpar;Div&period; 2&rpar;-D&period; MUH and Cube Walls&comma;KMP裸模板拿走!

    D. MUH and Cube Walls 说实话,这题看懂题意后秒出思路,和顺波说了一下是KMP,后来过了一会确定了思路他开始写我中途接了个电话,回来kaungbin模板一板子上去直接A了. 题意: ...

  5. Codeforces Round &num;269 &lpar;Div&period; 2&rpar; B&period; MUH and Important Things

    It's time polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from t ...

  6. Codeforces Round &num;366 &lpar;Div&period; 2&rpar; ABC

    Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...

  7. Codeforces Round &num;354 &lpar;Div&period; 2&rpar; ABCD

    Codeforces Round #354 (Div. 2) Problems     # Name     A Nicholas and Permutation standard input/out ...

  8. Codeforces Round &num;368 &lpar;Div&period; 2&rpar;

    直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...

  9. cf之路,1,Codeforces Round &num;345 &lpar;Div&period; 2&rpar;

     cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅.....   ...

随机推荐

  1. C&num; GDI&plus;发生一般性错误(A generic error occurred in GDI&plus;&rpar;)

    解决思路: 1. 因为 .net GDI+ 是对底层 的封装. 所以可以尝试用 Marshal.GetLastWin32Error();函数获得底层错误代码. try{ image.Save(file ...

  2. Spring container vs SpringMVC container&lpar;webmvc container&rpar;

    Difference between applicationContext.xml and spring-servlet.xml in Spring Framework Scenario 1 In c ...

  3. 010医疗项目-模块一:用户添加的实现(Dao&comma;Service&comma;Action&comma;增加页面调试,提交页面调试)

    要实现的效果:

  4. oracle 里面定时执行任务,比如存储过程内容等。

    DECLARE   job_no_ NUMBER;   BEGIN      DBMS_JOB.SUBMIT(job_no_,                   'proc_qszx_dw_sc(' ...

  5. 转发:使用sql命令查询视图中所有引用的基础表

    转自:使用sql命令查询视图中所有引用的基础表 使用sql命令查询视图中所有引用的基础表 之前有写过如何利用sql查询视图中所有引用的表发现这个方法并不能查出视图中所有的基础表,如果视图中有嵌套视图就 ...

  6. css 选择器和优先级

    css样式是做网页时,页面 布局不可或缺的关键点.但是在做网页时,会遇到一些明明已经设置了样式的元素,缺无法达到想要的效果,这种情况比较常见.这就涉及到优先级的问题了 要说到css的优先级,先来看下c ...

  7. &lbrack;BZOJ&rsqb;3926 诸神眷顾的幻想乡&lpar;ZJOI2015&rpar;

    听说大佬们都会后缀自动机. 小C看完SAM,想找个裸题练习一下模板.听说这题还是陈老师出的?(羊毛出在羊身上) Description  幽香是全幻想乡里最受人欢迎的萌妹子,这天,是幽香的2600岁生 ...

  8. centos7 &plus; python 2&period;7 &plus; pip &plus; openvswitch 杂项问题

    问题1: virtual box 安装centos7 后,网口无ip, 解决方法是:配置网口上电后,默认状态为down,  修改“onboot=yes”, 修改后保存配置重启系统. 2. 安装pip的 ...

  9. redis安全 &lpar;error&rpar; NOAUTH Authentication required

    Redis 安全 我们可以通过 redis 的配置文件设置密码参数,这样客户端连接到 redis 服务就需要密码验证,这样可以让你的 redis 服务更安全. 实例 我们可以通过以下命令查看是否设置了 ...

  10. 雷林鹏分享:C&num; 环境

    C# 环境 在这一章中,我们将讨论创建 C# 编程所需的工具.我们已经提到 C# 是 .Net 框架的一部分,且用于编写 .Net 应用程序.因此,在讨论运行 C# 程序的可用工具之前,让我们先了解一 ...