美团CodeM复赛 02,03
02 城市网络
比赛时候写的是单调栈,真的是让人见笑了,基本思路就是dfs时候动态处理单调栈(带回溯),然后离线处理答案。题解是用了倍增的,效率高很多
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <algorithm>
#include <iostream>
#include <map>
#include <set>
#include <queue>
#include <cmath>
using namespace std;
typedef long long ll;
#define MP(x, y) make_pair(x, y)
#define lson l,m, rt<<1
#define rson m+1, r, rt<<1|1
const int N = 1e5+5;
const int INF = 0x3f3f3f3f;
int A[N];
struct Node{
int to, nx;
}E[N * 2];
int Deep[N];
int head[N], tot;
void add(int fr, int to) {
E[tot].to = to; E[tot].nx = head[fr]; head[fr] = tot ++;
}
struct Pode{
int po, val, an;
Pode(int a=0, int b=0, int c=0):po(a), val(b), an(c){}
};
vector<Pode> ask[N];
int ans[N];
int SA[N]; int SB[N]; int cnt;
int search(int x, int ty) {
int l = 1; int r = cnt;
while(l <= r) {
int mid = (l + r) >> 1;
if(ty) {
if(SA[mid] >= x) r = mid - 1;
else l = mid + 1;
}else {
if(-SB[mid] >= -x) r = mid-1;
else l = mid + 1;
}
}
return l;
}
void dfs(int x, int pre, int dep) {
Deep[x] = dep;
vector<pair<int, int> > tmp;
if(cnt == 0) SA[++cnt] = dep, SB[cnt] = A[x];
else {
int pos = 0;
for(int i = cnt; i >= 1; --i) {
if(SB[i] > A[x]) {
pos = i;
SA[i + 1] = dep; SB[i + 1] = A[x]; cnt = i+1;
break;
}else {
tmp.push_back(MP(SA[i], SB[i]));
}
}
if(pos == 0) SA[1] = dep, SB[1] = A[x], cnt = 1;
}
// printf("%d: ", x); for(int i = 1; i <= cnt; ++i) printf("%d:%d ", SA[i], SB[i]); printf("\n");
for(int i = 0; i < ask[x].size(); ++i) {
int po = ask[x][i].po; int val = ask[x][i].val; int an = ask[x][i].an;
int pos1 = search(Deep[po], 1); int pos2 = search(val, 0);
ans[an] = max(pos2 - pos1, 0);
}
for(int i = head[x]; ~i; i = E[i].nx) {
int to = E[i].to; if(to == pre) continue;
dfs(to, x, dep + 1);
}
cnt --;
for(int i = tmp.size() - 1; i >= 0; --i) {
int t1 = tmp[i].first; int t2 = tmp[i].second;
SA[++cnt] = t1; SB[cnt] = t2;
}
tmp.clear();
}
int main() {
int n, q;
while(~scanf("%d %d", &n, &q)) {
cnt = 0;
memset(head, -1, sizeof(head)); tot = 0;
for(int i = 1; i <= n; ++i) ask[i].clear();
for(int i = 1; i <= n; ++i) scanf("%d", &A[i]);
for(int i = 1; i < n; ++i) {
int a, b; scanf("%d %d", &a, &b);
add(a, b); add(b, a);
}
for(int i = 0; i < q; ++i) {
int a, b, c; scanf("%d %d %d", &a, &b, &c);
ask[a].push_back(Pode(b, c, i));
}
dfs(1, 1, 1);
// for(int i = 1; i <= n; ++i) printf("%d ", Deep[i]); printf("\n");
for(int i = 0; i < q; ++i) printf("%d\n", ans[i]);
}
return 0;
}
03 神秘代码
比赛最后10分钟我才想到这就是一个环套树,然后就没有然后了= =,如果能A的话还是很有希望进前50的,我之前认为这题看起来像数论,又那么像拓展欧几里得,不会不会,还不如多试试05。确实弱233
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <algorithm>
#include <iostream>
#include <map>
#include <set>
#include <queue>
#include <cmath>
using namespace std;
typedef long long ll;
#define MP(x, y) make_pair(x, y)
#define lson l,m, rt<<1
#define rson m+1, r, rt<<1|1
const int N = 1e5+5;
const int INF = 0x3f3f3f3f;
int MOD;
struct Node{
int fr, to, nx, a, b, c;
}E[N << 1];
int head[N]; int tot;
int vis[N]; int Pre[N];
int suc;
int ans[N];
void add(int fr, int to, int a, int b, int c) {
E[tot].to = to; E[tot].a = a; E[tot].b = b; E[tot].c = c; E[tot].fr = fr;
E[tot].nx = head[fr]; head[fr] = tot ++;
}
long long inv(long long a) {
if(a == 1) return 1;
return inv(MOD%a)*(MOD-MOD/a)% MOD;
}
void bfs(int x) {
queue<int> Q;
Q.push(x);
vis[x] = 2;
while(!Q.empty()) {
int po = Q.front(); Q.pop();
// printf("%d: %d\n", po, ans[po]);
for(int i = head[po]; ~i; i = E[i].nx) {
int y = E[i].to; int a = E[i].a; int b = E[i].b; int c = E[i].c;
if(vis[y] != 2) {
vis[y] = 2;
ll tt = inv(b);
ans[y] = (1ll*c*tt %MOD - 1ll*a*ans[po]%MOD * tt %MOD + MOD) %MOD;
Q.push(y);
}
}
}
}
void Find(int x, int tar, int B, int C) {
int Next = E[Pre[x]].fr; int a = E[Pre[x]].b; int b = E[Pre[x]].a; int c = E[Pre[x]].c;
ll tmp = inv(a);
// printf("a:%d b:%d c:%d Next:%d now:%d %lld %d %d\n", a,b,c, Next, x, tmp, B, C);
b = 1ll* (-b+MOD) * tmp %MOD;
c = 1ll* c * tmp %MOD;
C = (1ll*C + 1ll*B*c) % MOD;
B = 1ll* B*b %MOD;
if(Next == tar) {
ans[tar] = 1ll* C*inv( (1-B+MOD)%MOD ) % MOD;
// printf("tar: %d\n", ans[tar]);
bfs(tar);
return;
}
Find(Next, tar, B, C);
}
void dfs(int x, int pre) {
if(suc) return;
for(int i = head[x]; ~i; i = E[i].nx) {
int to = E[i].to; if(to == pre) continue;
if(suc) return;
if(!vis[to]) { vis[to] = 1; Pre[to] = i; dfs(to, x); }
else {
Pre[to] = i;
Find(to, to, 1, 0);
suc = 1;
break;
}
}
}
int main() {
int n;
while(~scanf("%d %d", &n, &MOD)) {
memset(head, -1, sizeof(head));
tot = 0;
for(int i = 0; i < n; ++i) {
int u, v, a, b, c;
scanf("%d %d %d %d %d", &u, &v, &a, &b, &c);
add(u, v, a, b, c);
add(v, u, b, a, c);
}
for(int i = 1; i <= n; ++i) {
if(!vis[i]) {
suc = 0;
vis[i] = 1; dfs(i, i);
}
}
for(int i = 1; i <= n; ++i) printf("%d\n", ans[i]);
}
return 0;
}
美团CodeM复赛 02,03的更多相关文章
- LOJ #6192. 「美团 CodeM 复赛」城市网络 (树上倍增)
#6192. 「美团 CodeM 复赛」城市网络 内存限制:64 MiB 时间限制:500 ms 标准输入输出 题目描述 有一个树状的城市网络(即 nnn 个城市由 n−1n-1n−1 条道路连接 ...
- LibreOJ #6192. 「美团 CodeM 复赛」城市网络
#6192. 「美团 CodeM 复赛」城市网络 内存限制:64 MiB时间限制:500 ms标准输入输出 题目类型:传统评测方式:文本比较 上传者: sqc 提交提交记录统计讨论测试数据 题目描 ...
- 美团 CodeM 复赛」城市网络
美团 CodeM 复赛」城市网络 内存限制:64 MiB时间限制:500 ms标准输入输出 题目描述 有一个树状的城市网络(即 nnn 个城市由 n−1n-1n−1 条道路连接的连通图),首都为 11 ...
- LibreOJ #6191. 「美团 CodeM 复赛」配对游戏
二次联通门 : LibreOJ #6191. 「美团 CodeM 复赛」配对游戏 /* LibreOJ #6191. 「美团 CodeM 复赛」配对游戏 概率dp */ #include <cs ...
- 「美团 CodeM 复赛」城市网络
题目链接 题意分析 首先 \([u,v]\)在树上是一条深度递增的链 那么我们可以使用倍增找 \(x\)的祖先当中深度最大的值大于\(x\)的点 然后维护一个\(pre\) 重新建树 这样从\(x\) ...
- 【loj6191】「美团 CodeM 复赛」配对游戏 概率期望dp
题目描述 n次向一个栈中加入0或1中随机1个,如果一次加入0时栈顶元素为1,则将这两个元素弹栈.问最终栈中元素个数的期望是多少. 输入 一行一个正整数 n . 输出 一行一个实数,表示期望剩下的人数, ...
- 【loj6191】「美团 CodeM 复赛」配对游戏
题目 显然期望dp. 简单想法: f[i][j]表示前i个人中向右看并且没有被消除的人数的概率 如果第i+1个人是向右,$f[i+1][j+1]=f[i][j]/2$ 如果第i+1个人是向左,$f[i ...
- loj #6191. 「美团 CodeM 复赛」配对游戏 期望dp
题意:有一个栈,随机插入 $n$ 次 $0$/$1$ 如果栈顶是 $1$,然后插入 $0$,则将这两个元素都弹出,否则,插入栈顶. 求:$n$ 次操作后栈中期望的元素个数. 我们发现,按照上述弹栈方式 ...
- 02.02.03第3章 餐饮项目案例(Power BI商业智能分析)
02.02.03第3章 餐饮项目案例 02.02.03.01餐饮数据理解与读入 00:06:12 02.02.03.02餐饮数据处理 00:29:57 处理生成的表为: 02.02.03.03餐饮数据 ...
随机推荐
- java中Queue简介
Queue: 基本上,一个队列就是一个先入先出(FIFO)的数据结构 offer,add区别:一些队列有大小限制,因此如果想在一个满的队列中加入一个新项,多出的项就会被拒绝.这时新的 offer 方法 ...
- 洛谷 [P2756] 飞行员配对方案问题 网络流实现
网络流实现二分图匹配 对于x集合的每一个点连一条从源点出发的容量为一的边,对于y集合的每一个点连一条到汇点的容量为一的边,跑最大流 #include <iostream> #include ...
- BZOJ 1485: [HNOI2009]有趣的数列 [Catalan数 质因子分解]
1485: [HNOI2009]有趣的数列 Description 我们称一个长度为2n的数列是有趣的,当且仅当该数列满足以下三个条件: (1)它是从1到2n共2n个整数的一个排列{ai}: (2)所 ...
- poj1265&&2954 [皮克定理 格点多边形]【学习笔记】
Q:皮克定理这种一句话的东西为什么还要写学习笔记啊? A:多好玩啊... PS:除了蓝色字体之外都是废话啊... Part I 1.顶点全在格点上的多边形叫做格点多边形(坐标全是整数) 2.维基百科 ...
- getHibernateTemplate() VS getSession()
如题所示,对于这个问题,官网文档已给出答案,详见: /** * Obtain a Hibernate Session, either from the current transaction or * ...
- xcode7中使用cocos2d-x3.8的webview控件
在XCode7中使用cocos2d-x 3.3以上版本的WebView控件时,碰到了编译错误 App Transport Security has blocked a cleartext HTTP ( ...
- IOS教程视频汇总
使用StoryBoard做iOS UI界面跳转
- ManagementObjectSearcher Path
为了获取硬件信息,你还需要创建一个ManagementObjectSearcher 对象.ManagementObjectSearcher searcher = new ManagementObjec ...
- java单例模式学习笔记
最近一直在学习多线程,在学习过程中遇到了关于单例模式的多线程安全问题,内容如下: 一:首先什么是单例模式 单例模式具有的三要点: 一个类只能有一个实例: 必须是由它自己创建的这个实例: 它必须自行向外 ...
- mysql中的范式与范式——读<<高性能mysql>>笔记一
对于任何给定的数据库通常都有很多表示方法,从完全的范式化到完全的反范式化,以及两者的折中.在范式化的数据库中,每个事实数据会出现并且只出现一次.相反,在反范式化的数据库中,可能会存储在多个地方. 那什 ...