先说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 #269 (Div. 2) A,B,C,D

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

  2. Codeforces Round #269 (Div. 2) D - MUH and Cube Walls kmp

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

  3. Codeforces Round #269 (Div. 2)

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

  4. Codeforces Round #269 (Div. 2)-D. MUH and Cube Walls,KMP裸模板拿走!

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

  5. Codeforces Round #269 (Div. 2) B. 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 #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 ...

  7. Codeforces Round #354 (Div. 2) ABCD

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

  8. Codeforces Round #368 (Div. 2)

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

  9. cf之路,1,Codeforces Round #345 (Div. 2)

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

随机推荐

  1. 类似QtiPlot的veusz,sigmaplot,pymol

    qtiplot在win下没那么好编译 依赖很多外部包的 scidavis 和 labplot是从他fork出来的 比较接近Origin 可以用这两个 FreeBSD 的 ports 里有直接 cd / ...

  2. 利用VS2005进行dump文件调试(17篇博客)

    前言:利用drwtsn32或NTSD进行程序崩溃处理,都可以生成可用于调试的dmp格式文件.使用VS2005打开生成的DMP文件,能很方便的找出BUG所在位置.本文将讨论以下内容: 1.  程序编译选 ...

  3. 带dos调试窗口的win32程序

    #pragma comment( linker, "/subsystem:\"console\" /entry:\"WinMainCRTStartup\&quo ...

  4. Design Pattern Chain of Reponsibility 责任链模式

    本程序实现一个责任链模式查询人名的资料. 開始都是查询第一个人,问其是否有某人的资料,假设有就返回结果,假设没有第一个人就会询问第二个人,第二个人的行为和第一个人的行为一致的,然后一致传递下去,直到找 ...

  5. 【cocos2d-js公文】十七、事件分发机制

    简单介绍 游戏开发中一个非常重要的功能就是交互,假设没有与用户的交互.那么游戏将变成动画,而处理用户交互就须要使用事件监听器了. 总概: 事件监听器(cc.EventListener) 封装用户的事件 ...

  6. Linux-C语言中gettimeofday()函数的使用方法(转载)

    1.简介: 在C语言中可以使用函数gettimeofday()函数来得到时间.它的精度可以达到微妙 2.函数原型: #include<sys/time.h> int gettimeofda ...

  7. 【UVA】12299-RMQ with Shifts(线段树)

    改动的时候因为数据非常小,所以能够直接暴力改动,查询的时候利用线段树即可了. 14337858 option=com_onlinejudge&Itemid=8&page=show_pr ...

  8. Extract Datasets

    *&---------------------------------------------------------------------* *& Report ZTEST2013 ...

  9. 简单概率dp(期望)-zoj-3640-Help Me Escape

    题目链接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4808 题目大意: 有n条路,选每条路的概率相等,初始能力值为f,每 ...

  10. cape town

    开普敦_百度百科 开普敦