Problem 1 双色球(ball.cpp/c/pas)

【题目描述】

机房来了新一届的学弟学妹,邪恶的chenzeyu97发现一位学弟与他同名,于是他当起了善良的学长233

“来来来,学弟,我考你道水题检验一下你的水平……”

一个栈内初始有n个红色和蓝色的小球,请你按照以下规则进行操作

  1. 只要栈顶的小球是红色的,将其取出,直到栈顶的球是蓝色
  2. 然后将栈顶的蓝球变成红色
  3. 最后放入若干个蓝球直到栈中的球数为n

以上3步骤为一次操作

如栈中都是红色球,则操作停止,请问几次操作后停止

chenzeyu97出完题发现他自己不能AC所以想请你帮忙

【输入格式】

第一行为一个整数n,表示栈的容量为n

第二行为一个字符串,第i个字符表示自顶向下的第i个球的颜色,R代表红色,B代表蓝色

【输出格式】

一个整数表示操作数

【样例输入】

样例1:

3

RBR

样例2:

4

RBBR

【样例输出】

样例1:2

样例2:6

【数据范围】

50%的数据,1<=n<=20

100%的数据,1<=n<=50

【题解】

定义cnt[i]表示连续i个蓝色球需要的移动次数,不难得到cnt[i] = 2cnt[i - 1] + 1

我用了大整数。。结果不需要。。

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
const int INF = 0x3f3f3f3f;
const int MAXN = + ; inline void read(long long &x)
{
x = ;char ch = getchar();char c = ch;
while(ch < '' || ch > '')c = ch, ch = getchar();
while(ch <= '' && ch >= '')x = x * + ch - '', ch = getchar();
if(c == '-')x = -x;
} struct Bignum
{
long long data[],len;
void add(long long x)
{
int tmp = ;
data[] += x;
while(data[tmp] >= )
{
data[tmp + ] += data[tmp] / ;
data[tmp] = data[tmp] % ;
tmp ++;
}
if(tmp > len) len = tmp;
}
void put()
{
for(int i = len;i >= ;-- i)
{
printf("%d", data[i]);
}
}
}; long long n;char s[MAXN];
long long blue[MAXN], top;
long long cnt[MAXN]; Bignum ans; int main()
{
cnt[] = ;
for(int i = ;i <= ;++ i)
cnt[i] = (cnt[i - ] << ) + ;
read(n);
register int i;
scanf("%s", s + );
for(i = ;i <= n;++ i)
if(s[i] == 'B')
blue[++top] = i;
memset(ans.data, , sizeof(ans.data));
ans.len = ;
while(top)
ans.add(cnt[blue[top] - ] + ), top --;
ans.put();
return ;
}

Problem 2 魔方(cube.cpp/c/pas)

【题目描述】

ccy(ndsf)觉得手动复原魔方太慢了,所以他要借助计算机。

ccy(ndsf)家的魔方都是3*3*3的三阶魔方,大家应该都见过。

(3的“顺时针”改为“逆时针”,即3 4以图为准。)
ccy(ndfs)从网上搜了一篇攻略,并找人翻译成了他自己会做的方法。现在告诉你他的魔方情况,以及他从网上搜到的攻略,请你求出最后魔方变成什么样子。

【输入格式】
   第一行,一串数字,表示从网上搜到的攻略。
   下面6*3行,每行3个数字,每三行表示魔方一个面的情况,六个面的顺序是前、后、左、右、上、下。

【输出格式】
   6*3行,表示处理后的魔方,形式同输入。

【样例输入】

23
121
221
111
123
321
111
123
321
132
132
231
132
121
112
233
332
111
333

【样例输出】

123
222
113
212
321
113
122
321
132
121
333
121
211
312
113
331
111
331

【数据范围】

40%的数据,攻略的长度小于5且仅有4种操作的其中一种

100%的数据,攻略的长度小于100

【题解】

题目样例数据均有误,只能按错的做了。暴力。

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
const int INF = 0x3f3f3f3f;
const int MAXN = + ; inline void read(int &x)
{
x = ;char ch = getchar();char c = ch;
while(ch < '' || ch > '')c = ch, ch = getchar();
while(ch <= '' && ch >= '')x = x * + ch - '', ch = getchar();
if(c == '-')x = -x;
}
inline void swap(int &a, int &b){int tmp = a;a = b;b = tmp;} int q[MAXN],n;
int squ[][][];
int tmp[],tmp2[][]; inline void put()
{
for(int i = ;i <= ;++ i)
{
for(int j = ;j <= ;++ j)
{
for(int k = ;k <= ;++ k)
printf("%d", squ[i][j][k]);
putchar('\n');
}
}
} int main()
{
char c = getchar();
while(c > '' || c < '')c = getchar();
while(c <= '' && c >= '')q[++n] = c - '',c = getchar();
for(int i = ;i <= ;++ i)
{
for(int j = ;j <= ;++ j)
{
while(c > '' || c < '')c = getchar();
for(int k = ;k <= ;++ k)
{
squ[i][j][k] = c - '';
c = getchar();
}
}
}
for(int k = ;k <= n;++ k)
{
if(q[k] == )
{
//5上最右->2后最右
//1前最右->5上最右
//6下最右->1前最右
//2后最右->6下最右
//4右面 顺时针转90度
for(int i = ;i <= ;++ i)
tmp[i] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = tmp[i]; for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
tmp2[i][j] = squ[][i][j];
for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
squ[][i][j] = tmp2[ - j + ][i];
}
else if(q[k] == )
{
//5上最右->1前最右
//2后最右->5上最右
//6下最右->2后最右
//1前最右->6下最右
//4右面 逆时针转90度 for(int i = ;i <= ;++ i)
tmp[i] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = squ[][i][];
for(int i = ;i <= ;++ i)
squ[][i][] = tmp[i]; for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
tmp2[i][j] = squ[][i][j];
for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
squ[][i][j] = tmp2[j][ - i + ];
}
else if(q[k] == )
{
//1前最上->4右最上
//3左最上->1前最上
//2后最上->3左最上
//4右最上->2后最上
//5上逆时针
for(int i = ;i <= ;++ i)
tmp[i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = tmp[i];
for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
tmp2[i][j] = squ[][i][j];
for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
squ[][i][j] = tmp2[ - j + ][i]; }
else
{
//1前最上->3左最上
//4右最上->1前最上
//2后最上->4右最上
//3左最上->2后最上
//5上顺时针
for(int i = ;i <= ;++ i)
tmp[i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = squ[][][i];
for(int i = ;i <= ;++ i)
squ[][][i] = tmp[i];
for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
tmp2[i][j] = squ[][i][j];
for(int i = ;i <= ;++ i)
for(int j = ;j <= ;++ j)
squ[][i][j] = tmp2[j][ - i + ]; }
}
put();
return ;
}

Problem 3 czy的后宫(harem.cpp/c/pas)

【题目描述】

czy要妥善安排他的后宫,他想在机房摆一群妹子,一共有n个位置排成一排,每个位置可以摆妹子也可以不摆妹子。有些类型妹子如果摆在相邻的位置(隔着一个空的位置不算相邻),就不好看了。假定每种妹子数量无限,求摆妹子的方案数。

【输入格式】

输入有m+1行,第一行有两个用空格隔开的正整数n、m,m表示妹子的种类数。接下来的m行,每行有m个字符1或0,若第i行第j列为1,则表示第i种妹子第j种妹子不能排在相邻的位置,输入保证对称。(提示:同一种妹子可能不能排在相邻位置)。

【输出格式】

输出只有一个整数,为方案数(这个数字可能很大,请输出方案数除以1000000007的余数。

【样例输入】

2 2

01

10

【样例输出】

7

【样例说明】

七种方案为(空,空)、(空,1)、(1、空)、(2、空)、(空、2)、(1,1)、(2,2)。

【数据范围】

20%的数据,1<n≤5,0<m≤10。

60%的数据,1<n≤200,0<m≤100。

100%的数据,1<n≤1,000,000,000,0<m≤100。

注:此题时限1.5s是因为本评测机跑太慢,大家正常做

但写的太丑可能T一俩个点

【题解】

f[i][j]表示前i个妹子(包括0)最后一个是j的方案数;

f[i][j] = fΣ[i - 1][k]

矩阵加速

现场读入写挂了只拿了10分。。

险些AK

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
const long long INF = 0x3f3f3f3f3f3f3f3f;
const long long MAXN = + ;
const long long MAXM = +;
const long long MOD = ;
inline void read(long long &x)
{
x = ;char ch = getchar();char c = ch;
while(ch < '' || ch > '')c = ch, ch = getchar();
while(ch <= '' && ch >= '')x = x * + ch - '', ch = getchar();
if(c == '-')x = -x;
} long long n,m;
long long g[MAXM][MAXM];
long long tmp[MAXM][MAXM];
long long ans[MAXM][MAXM];
long long base[MAXM][MAXM];
void pow(long long b)
{
register long long i,j,k;
//int r = 1;
for(i = ;i <= m;++ i)
ans[i][i] = ;
//int base = a;
for(i = ;i <= m;++ i)
for(j = ;j <= m;++ j)
base[i][j] = g[i][j];
while(b)
{
if(b & )
{
memset(tmp, , sizeof(tmp));
//r *= base;
for(k = ;k <= m;++ k)
for(i = ;i <= m;++ i)
for(j = ;j <= m;++ j)
{
tmp[i][j] += ((ans[i][k] * base[k][j]) % MOD);
while(tmp[i][j] >= MOD)
tmp[i][j] -= MOD;
}
for(i = ;i <= m;++ i)
for(j = ;j <= m;++ j)
ans[i][j] = tmp[i][j];
}
memset(tmp, , sizeof(tmp));
//base *= base;
for(k = ;k <= m;++ k)
for(i = ;i <= m;++ i)
for(j = ;j <= m;++ j)
{
tmp[i][j] += ((base[i][k] * base[k][j]) % MOD);
while(tmp[i][j] >= MOD)
tmp[i][j] -= MOD;
}
for(i = ;i <= m;++ i)
for(j = ;j <= m;++ j)
base[i][j] = tmp[i][j];
b >>= ;
}
} int main()
{
read(n);read(m);
register long long i,j;
register char c;
register long long as = ;
for(i = ;i <= m;++ i)
{
while(c > '' || c < '')c = getchar();
for(int j = ;j <= m;++ j)
{
g[i][j] = c - '';
g[i][j] ^= ;
c = getchar();
}
}
m ++;
for(i = ;i <= m;++ i)
g[m][i] = g[i][m] = ;
pow(n - );
as = ;
for(i = ;i <= m;++ i)
for(j = ;j <= m;++ j)
{
as += ans[i][j] % MOD;
while(as >= MOD)
as -= MOD;
}
if(as < )as += MOD;
if(n == )printf("%lld", n + );
else printf("%lld", as % MOD);
return ;
}

Problem 4 mex(mex.cpp/c/pas)

详见BZOJ。

暂时留着,以后再说

NOIP模拟 7.05的更多相关文章

  1. ZROI提高组模拟赛05总结

    ZROI提高组模拟赛05总结 感觉是目前为止最简单的模拟赛了吧 但是依旧不尽人意... T1 有一半的人在30min前就A掉了 而我花了1h11min 就是一个简单的背包,我硬是转化了模型想了好久,生 ...

  2. NOIP模拟赛20161022

    NOIP模拟赛2016-10-22 题目名 东风谷早苗 西行寺幽幽子 琪露诺 上白泽慧音 源文件 robot.cpp/c/pas spring.cpp/c/pas iceroad.cpp/c/pas ...

  3. contesthunter暑假NOIP模拟赛第一场题解

    contesthunter暑假NOIP模拟赛#1题解: 第一题:杯具大派送 水题.枚举A,B的公约数即可. #include <algorithm> #include <cmath& ...

  4. NOIP模拟赛 by hzwer

    2015年10月04日NOIP模拟赛 by hzwer    (这是小奇=> 小奇挖矿2(mining) [题目背景] 小奇飞船的钻头开启了无限耐久+精准采集模式!这次它要将原矿运到泛光之源的矿 ...

  5. 大家AK杯 灰天飞雁NOIP模拟赛题解/数据/标程

    数据 http://files.cnblogs.com/htfy/data.zip 简要题解 桌球碰撞 纯模拟,注意一开始就在袋口和v=0的情况.v和坐标可以是小数.为保险起见最好用extended/ ...

  6. 队爷的讲学计划 CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的讲学计划 题解:刚开始理解题意理解了好半天,然后发 ...

  7. 队爷的Au Plan CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的Au%20Plan 题解:看了题之后觉得肯定是DP ...

  8. 队爷的新书 CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的新书 题解:看到这题就想到了 poetize 的封 ...

  9. CH Round #58 - OrzCC杯noip模拟赛day2

    A:颜色问题 题目:http://ch.ezoj.tk/contest/CH%20Round%20%2358%20-%20OrzCC杯noip模拟赛day2/颜色问题 题解:算一下每个仆人到它的目的地 ...

随机推荐

  1. ASCII对照

    标准表 Bin (二进制) Oct (八进制) Dec (十进制) Hex (十六进制) 缩写/字符 解释 0000 0000 00 0 0x00 NUL(null) 空字符 0000 0001 01 ...

  2. SPRINGBOOT配置事物注解和@MAPPER注意

    MAPPER接口要使用@Mapper注解,不能用@Compent @Repository,否则没有效果 一.开启事物 在启动类上加 @EnableTransactionManagement //如果m ...

  3. 2019-8-31-dotnet-手动解决-json-解析中不合法字符串

    title author date CreateTime categories dotnet 手动解决 json 解析中不合法字符串 lindexi 2019-08-31 16:55:58 +0800 ...

  4. vue 学习 一

    1.实例: var vm = new Vue({ el: '#example', data: { a:1 }, created: function () { // `this` 指向 vm 实例 co ...

  5. vue 路由(二级)配置及详细步骤

    1.安装插件(可以选择在初始化项目的时候安装) cnpm install vue-router --save-dev 2.将插件全局引入到项目中(main.js) import VueRouter f ...

  6. Python - 基本数据类型及其常用的方法之元组

    元组 特点:一级元素无法被修改,且不能被增加或者删除. 基本操作: tu = (11, 22, ["aiden", 33, ("qwe", 11)], 77) ...

  7. Python的格式化输出--制作名片

    效果图 代码如下: name = input("Your name:")age = int(input("Your age:"))job = input(&qu ...

  8. KOA 学习(四)

    响应(Response) Koa Response 对象是对 node 的 response 进一步抽象和封装,提供了日常 HTTP 服务器开发中一些有用的功能. response.header Re ...

  9. js 中直接调用和new的区别

    var test = new Test(); // 这里的 test 是什么?  是一个 Test 对象吗?错!这里 test 是一个函数——Test 中返回的 function() { return ...

  10. react-native start停止在Loading dependency graph, done.

    在试验的过程中. 发现运行 react-native start会卡住,停留在Loading dependency graph, done. 原因大概是之前运行过 react-native run-a ...