「NOIP模拟赛」Round 2
Tag
递推,状压DP,最短路
A. 篮球比赛1
\(Milky\ Way\)的代码
#include <cstdio>
const int N = 2000, xzy = 1e9 + 7;
int a[N], f[N][N], g[N][N], n, m = 1023, ans;
//f[i][j]表示前i个数的xor和为j的方案数
//g[i][j]表示后n-i+1个数的and和为j的方案数
int main() {
freopen("basketball1.in", "r", stdin);
freopen("basketball1.out", "w", stdout);
scanf("%d", &n);
for (int i = 1; i <= n; ++i) scanf("%d", &a[i]);
f[0][0] = 1;
for (int i = 1; i <= n; ++i) { //前i个数
for (int j = 0; j <= m; ++j)
(f[i][j] += f[i-1][j]) %= xzy;
for (int j = 0; j <= m; ++j) //前i-1个数的xor和为j
(f[i][j^a[i]] += f[i-1][j]) %= xzy;
}
for (int i = n; i >= 1; --i) { //后n-i+1个数
g[i][a[i]] = 1;
for (int j = 0; j <= m; ++j)
(g[i][j] += g[i+1][j]) %= xzy;
for (int j = 0; j <= m; ++j) //后n-i个数的and和为j
(g[i][j&a[i]] += g[i+1][j]) %= xzy;
}
for (int i = 1; i < n; ++i) //前i个数
for (int j = 0; j <= m; ++j) //前i-1个数的xor和
ans = (ans + 1LL * f[i-1][j] * g[i+1][j^a[i]] % xzy) % xzy;
printf("%d\n", ans);
fclose(stdin);
fclose(stdout);
return 0;
}
B. 篮球比赛2
\(Milky\ Way\)的代码
#include <cstdio>
const int N = 25, M = 1048580, XZY = 1e9 + 7;
int f[N][M], n, k, l, m, ans;
int main() {
freopen("basketball2.in", "r", stdin);
freopen("basketball2.out", "w", stdout);
scanf("%d%d%d", &n, &k, &l);
m = (1 << k) - 1;
f[0][0] = 1;
for (int i = 1; i <= n; ++i) { //前i个数
if (l > k) for (int j = 0; j <= m; ++j) //前i-1个数能取到的状态
f[i][j] = 1LL * f[i-1][j] * (l - k) % XZY; //x>k
for (int j = 0; j <= m; ++j) {
(f[i][j] += f[i-1][j]) %= XZY; //x=0
if (f[i-1][j]) for (int x = 1; x <= k && x <= l; ++x) //注意x要同时小于k和l
(f[i][(j|(j<<x)|(1<<x-1))&m] += f[i-1][j]) %= XZY; //1<=x<=k
}
}
for (int i = 0; i <= m; ++i)
if (i >> k - 1 & 1) (ans += f[n][i]) %= XZY;
printf("%d\n", ans);
fclose(stdin);
fclose(stdout);
return 0;
}
C. 密室逃脱
\(Lmsh7\)的代码
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <queue>
#include <algorithm>
using std::sort;
using std::queue;
using std::max;
using std::min;
typedef long long LL;
const int N = 105;
const int dx[] = {1, -1, 0, 0};
const int INF = 0X3f3f3f3f;
const int dy[] = {0, 0, -1, 1};
int n, m, cnt, stx, sty, edx, edy, ans = INF;
int a[N][N], f[N][N][11];
char s[N];
struct Node {
int x, y, m;
} b[N * N];
inline void bfs() {
memset(f, -1, sizeof(f));
queue <Node> q;
q.push(Node{stx, sty, 0});
f[stx][sty][0] = 0;
while(!q.empty()) {
int ux = q.front().x, uy = q.front().y, um = q.front().m;
// printf("%d %d %d\n", ux, uy, um);
q.pop();
for(int i = 0; i < 4; ++i) {
int nowx = ux + dx[i], nowy = uy + dy[i], nowm = um;
if(nowx < 1 || nowx > n || nowy < 1 || nowy > n) continue;
if(a[nowx][nowy] == -1 || f[nowx][nowy][nowm] != -1) continue;
if(a[nowx][nowy] == nowm + 1) ++nowm;
f[nowx][nowy][nowm] = f[ux][uy][um] + 1;
q.push(Node{nowx, nowy, nowm});
}
}
return;
}
void dfs(int x, int y) {//x -> cnt, y -> sum
if(x == cnt + 1) {
bfs();
// printf("f[%d][%d][%d] = %d\n", edx, edy, m, f[edx][edy][m]);
if(f[edx][edy][m] != -1) {
ans = min(ans, f[edx][edy][m] + y);
}
return;
}
a[b[x].x][b[x].y] = -1;
dfs(x + 1, y);
a[b[x].x][b[x].y] = 0;
dfs(x + 1, y + 1);
return;
}
int main() {
freopen("maze.in", "r", stdin);
freopen("maze.out", "w", stdout);
scanf("%d %d", &n, &m);
for(int i = 1; i <= n; ++i) {
scanf("%s", s + 1);
for(int j = 1; j <= n; ++j) {
if(s[j] == 'K') {
stx = i, sty = j;//璧风偣
} else if(s[j] == 'T') {
edx = i, edy = j;//缁堢偣
} else if(s[j] == 'S') {
b[++cnt].x = i;
b[cnt].y = j;//鐗规畩鎴块棿
} else if(s[j] == '.') {
a[i][j] = 0;
} else if(s[j] == '#') {
a[i][j] = -1;
} else {
a[i][j] = s[j] - '0';
}
}
}
dfs(1, 0);
if(ans == INF) puts("impossible");
else printf("%d\n", ans);
fclose(stdin);
fclose(stdout);
return 0;
}
「NOIP模拟赛」Round 2的更多相关文章
- 「NOIP模拟赛」Round 3
Tag 计数+LIS, 二分+ST表, 计数+记搜 A. 改造二叉树 Description 题面 Solution 如果目标序列非严格递增,或者说目标序列是不下降的,那么答案就是 \(n\) 减去最 ...
- 「NOIP模拟赛」数位和乘积(dp,高精)
统计方案数,要么组合数,要么递推(dp)了. 这是有模拟赛历史以来爆炸最狠的一次 T1写了正解,也想到开long long,但是开错了地方然后数组开大了结果100->0 T3看错题本来简单模拟又 ...
- 「CSP-S模拟赛」2019第四场
「CSP-S模拟赛」2019第四场 T1 「JOI 2014 Final」JOI 徽章 题目 考场思考(正解) T2 「JOI 2015 Final」分蛋糕 2 题目 考场思考(正解) T3 「CQO ...
- 「CSP-S模拟赛」2019第三场
目录 T1 「POI2007」山峰和山谷 Ridges and Valleys 题目 考场思路(几近正解) 正解 T2 「JOI 2013 Final」 现代豪宅 题目 考场思路(正解) T3 「SC ...
- 【模拟】HHHOJ#251. 「NOIP模拟赛 伍」高精度
积累模拟经验 题目描述 维护一个二进制数,支持如下操作 "+" 该数加 11 "-" 该数减 11 "*" 该数乘 22 "\&q ...
- Solution -「牛客 NOIP 模拟赛」打拳
\(\mathcal{Description}\) 现 \(2^n\) 个人进行淘汰赛,他们的战力为 \(1\sim 2^n\),战力强者能战胜战力弱者,但是战力在集合 \(\{a_m\}\) 里 ...
- 「CSP-S模拟赛」2019第二场
目录 T1 Jam的计数法 题目 考场思路(正解) T2 「TJOI / HEOI2016」排序 题目 考场思路(假正解) 正解 T3 「THUWC 2017」随机二分图 题目 考场思路 正解 这场考 ...
- 「CSP-S模拟赛」2019第一场
目录 T1 小奇取石子 题目 考场思路 正解 T2 「CCO 2017」专业网络 题目 考场思路 题解 T3 「ZJOI2017」线段树 题目 考场思路 正解 这场考试感觉很奇怪. \(T1.T2\) ...
- 「2018-11-05模拟赛」T5 传送机 解题报告
5.传送机(sent.*) 问题描述: 黄黄同学要到清华大学上学去了.黄黄同学很喜欢清华大学的校园,每次去上课时总喜欢把校园里面的每条路都走一遍,当然,黄黄同学想每条路也只走一遍. 我们一般人很可能对 ...
随机推荐
- codeforces 1010 C. Border【exgcd】
题目链接:戳这里 学习博客:戳这里 题意:给n种数,n种数取任意个任意组合相加为sum,求sum%k有哪些值. 解题思路: 由exgcd可知(具体用到的是贝祖定理),ax + by = c,满足gcd ...
- Linux内核实现透视---硬中断
Linux的中断处理是驱动中比较重要的一部分内容,要清楚具体的实现才能更好的理解而不是靠记住别人理解后总结的规律,所以今天就打算从从源码来学习一下Linux内核对于中断处理过程,设计中断子系统的初始化 ...
- LeetCode 算法题解 js 版 (001 Two Sum)
LeetCode 算法题解 js 版 (001 Two Sum) 两数之和 https://leetcode.com/problems/two-sum/submissions/ https://lee ...
- css & background-image & full page width & background-size
css & background-image & full page width & background-size https://css-tricks.com/perfec ...
- React In Depth
React In Depth React Component Lifecycle https://reactjs.org/docs/react-component.html https://react ...
- stackoverflow & xgqfrms
stackoverflow & xgqfrms stackoverflow https://stackoverflow.com/users/5934465/xgqfrms https://st ...
- lua调用dll导出的函数
参考手册 hello.dll #include "pch.h" #include "lua.hpp" #pragma comment(lib, "lu ...
- Asp.NetCore 3.1demo发布使用Windows服务
Core之Windows服务 使用测试之前,先来简单了解一下 window自带的sc命令 ========install.bat set serviceName=你的服务名称 set serviceF ...
- 200万枚SPC空投来袭,这样的薅羊毛活动你确定不参加吗?
在过去的2020年,币圈真的是很火爆,很多人在参与数字货币交易或DeFi挖矿中赚到了大钱.但是转眼到了2021年,DeFi进入了下半场,区块链市场也进入了新的阶段,那么区块链的下一个爆点是什么呢?很多 ...
- 观点纠正,yarn和npm对比,今天yarn仍然比npm快吗
yarn和npm的区别和对比,网上很多了,不多说了. 只纠正一个观点:yarn仍然比npm快吗?不. 2016年,yarn刚刚发布,速度确实比npm快,于是网络上出现了好多推荐yarn的文章. 于是很 ...