题目链接  Round 439 div2

就做了两道题TAT

开场看C题就不会

然后想了好久才想到。

三种颜色挑出两种算方案数其实是独立的,于是就可以乘起来了。

E题想了一会有了思路,然后YY出了一种方案。

我们可以对每个矩形随机一个权值,然后用二维树状数组搞下。

询问的时候看两个点权值是否相等就可以了

于是就过了。

D题待补

给出一棵完全二叉树,这棵树上有附带的m条边(m <= 4),求这张图的简单路径条数。

qls的题就是厉害……

C题

#include <bits/stdc++.h>

using namespace std;

#define rep(i, a, b)	for (int i(a); i <= (b); ++i)
#define dec(i, a, b) for (int i(a); i >= (b); --i)
#define MP make_pair
#define fi first
#define se second typedef long long LL; const int N = 5010; const int mod = 998244353; int P[N][N], C[N][N];
int a, b, c; int calc(int x, int y){
if (x > y) swap(x, y);
LL ret = 0;
rep(i, 0, x) ret = (ret + 1ll * P[y][i] * C[x][i]) % mod;
return ret;
} int main(){ C[0][0] = P[0][0] = 1;
scanf("%d%d%d", &a, &b, &c); rep(i, 1, 5000){
C[i][0] = P[i][0] = 1;
rep(j, 1, i){
P[i][j] = (1ll * P[i - 1][j - 1] * j % mod + 1ll * P[i - 1][j] % mod) % mod;
C[i][j] = (1ll * C[i - 1][j - 1] + 1ll * C[i - 1][j]) % mod;
}
} int ans = 1ll * calc(a, b) % mod * 1ll * calc(b, c) % mod * 1ll * calc(a, c) % mod;
printf("%d\n", ans);
return 0;
}

E题

#include <bits/stdc++.h>

using namespace std;

#define rep(i, a, b)	for (int i(a); i <= (b); ++i)
#define dec(i, a, b) for (int i(a); i >= (b); --i)
#define MP make_pair typedef long long LL;
typedef pair <int, int> PII; const LL mod = 1e9 + 7;
const int N = 5010; map <PII, LL> mp; int cnt = 0;
int n, m, q;
int p[N][N];
LL c[N][N]; inline void add(int x, int y, LL val){
for (; x <= n; x += x & -x){
for (int t = y; t <= m; t += t & -t){
c[x][t] = (c[x][t] + val) % mod;
c[x][t] = (c[x][t] + mod) % mod;
}
}
} inline LL query(int x, int y){
LL ret = 0;
for (; x ; x -= x & -x){
for (int t = y; t ; t -= t & -t){
(ret += c[x][t]) %= mod;
}
} return ret;
} inline LL solve(int x, int y){
LL ret = query(x, y) % mod;
return ret;
} int main(){ scanf("%d%d%d", &n, &m, &q);
rep(i, 1, n) rep(j, 1, m) p[i][j] = ++cnt; rep(i, 1, q){
int op;
scanf("%d", &op);
if (op == 1){
int x1, y1, x2, y2;
scanf("%d%d%d%d", &x1, &y1, &x2, &y2);
if (x1 > x2) swap(x1, x2);
if (y1 > y2) swap(y1, y2);
LL cnt = (LL)rand() * (LL)rand() * (LL)rand() % mod;
mp[MP(p[x1][y1], p[x2][y2])] = cnt; add(x1, y1, cnt);
add(x1, y2 + 1, -cnt);
add(x2 + 1, y1, -cnt);
add(x2 + 1, y2 + 1, cnt);
} else if (op == 2){
int x1, y1, x2, y2;
scanf("%d%d%d%d", &x1, &y1, &x2, &y2);
if (x1 > x2) swap(x1, x2);
if (y1 > y2) swap(y1, y2);
LL cnt = mp[MP(p[x1][y1], p[x2][y2])];
add(x1, y1, -cnt);
add(x1, y2 + 1, cnt);
add(x2 + 1, y1, cnt);
add(x2 + 1, y2 + 1, -cnt);
} else{
int x1, y1, x2, y2;
scanf("%d%d%d%d", &x1, &y1, &x2, &y2);
LL xx = solve(x1, y1);
LL yy = solve(x2, y2);
if (xx == yy) puts("Yes");
else puts("No");
} } return 0;
}

最新文章

  1. 深入浅出 Redis client/server交互流程
  2. 【GO】GO语言学习笔记二
  3. BZOJ 2080: [Poi2010]Railway 双栈排序
  4. LeetCode 453 Minimum Moves to Equal Array Elements
  5. zobrist hashing
  6. java多线程的使用1
  7. How to begin with the webpage making
  8. 《Mysql 公司职员学习篇》 第一章 小A的烦恼
  9. 51nod贪心算法入门-----任务分配问题
  10. entity 实体模型timeout设置
  11. [Linked List]Reverse Linked List,Reverse Linked List II
  12. STL之如何选择顺序容器
  13. H5本地存储sessionStorage和localStorage的区别
  14. Matlab 将RGB 图像转换成YCrCb图像
  15. mac os 下 vs code 开发 .net core
  16. day4-list,列表
  17. Servlet 教程 各个知识点简单概括
  18. 容器学习笔记之CentOS7安装Docker(安装指定版本的Docker,加速,卸载)
  19. 阻止ARP欺骗
  20. Winform解决界面重绘闪烁的问题

热门文章

  1. nginx的url重写
  2. Python使用gevent实现协程
  3. micrium ucprobe使用笔记
  4. 建立,查询二叉树 hdu 5444
  5. selenium2等待元素加载
  6. JAVA里的单引号和双引号及String和char的区别
  7. Mysql新建数据库、删除数据库
  8. webdriver高级应用- 使用日志模块记录测试过程中的信息
  9. Jmeter Cluster
  10. python学习--同目录下调用 (*.py)及不同目录下调(*.py)