1 条题解
-
0
自动搬运
来自洛谷,原作者为

iyaang
不因过往而自卑搬运于
2025-08-24 22:48:28,当前版本为作者最后更新于2023-07-24 08:46:42,作者可能在搬运后再次修改,您可在原文处查看最新版自动搬运只会搬运当前题目点赞数最高的题解,您可前往洛谷题解查看更多
以下是正文
这场里面较为简单的题,直接模拟即可。
首先按照题意建出整张流程图,同时存一下反图,这样方便查询时倒推,注意到题目保证一定是无环结构,所以可以直接拓扑排序算出每个点的流量有多少。对于查询,直接根据分流节点还是汇流节点(这个可以根据正图的后继节点数量判断)求出在前一个点的编号是多少,分讨一下就好。如果遍历途中出现了在这个点的编号大于了这个点的流量,则输出
none,否则一直回溯到 号点输出其编号。对于每次询问我们可能回溯整张流程图的每个节点,于是做到了 ,足以通过。#include<bits/stdc++.h> #define ld long double #define ui unsigned int #define ull unsigned long long #define int long long #define eb emplace_back #define pb pop_back #define ins insert #define mp make_pair #define pii pair<int,int> #define fi first #define se second #define power(x) ((x)*(x)) #define gcd(x,y) (__gcd((x),(y))) #define lcm(x,y) ((x)*(y)/gcd((x),(y))) #define lg(x,y) (__lg((x),(y))) using namespace std; namespace FastIO { template<typename T=int> inline T read() { T s=0,w=1; char c=getchar(); while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();} while(isdigit(c)) s=(s*10)+(c^48),c=getchar(); return s*w; } template<typename T> inline void read(T &s) { s=0; int w=1; char c=getchar(); while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();} while(isdigit(c)) s=(s*10)+(c^48),c=getchar(); s=s*w; } template<typename T,typename... Args> inline void read(T &x,Args &...args) { read(x),read(args...); } template<typename T> inline void write(T x,char ch) { if(x<0) x=-x,putchar('-'); static char stk[25]; int top=0; do {stk[top++]=x%10+'0',x/=10;} while(x); while(top) putchar(stk[--top]); putchar(ch); return; } } using namespace FastIO; namespace MTool { #define TA template<typename T,typename... Args> #define TT template<typename T> static const int Mod=998244353; TT inline void Swp(T &a,T &b) {T t=a;a=b;b=t;} TT inline void cmax(T &a,T b) {a=a>b?a:b;} TT inline void cmin(T &a,T b) {a=a<b?a:b;} TT inline void Madd(T &a,T b) {a=a+b>Mod?a+b-Mod:a+b;} TT inline void Mdel(T &a,T b) {a=a-b<0?a-b+Mod:a-b;} TT inline void Mmul(T &a,T b) {a=a*b%Mod;} TT inline void Mmod(T &a) {a=(a%Mod+Mod)%Mod;} TT inline T Cadd(T a,T b) {return a+b>=Mod?a+b-Mod:a+b;} TT inline T Cdel(T a,T b) {return a-b<0?a-b+Mod:a-b;} TT inline T Cmul(T a,T b) {return a*b%Mod;} TT inline T Cmod(T a) {return (a%Mod+Mod)%Mod;} TA inline void Madd(T &a,T b,Args... args) {Madd(a,Cadd(b,args...));} TA inline void Mdel(T &a,T b,Args... args) {Mdel(a,Cadd(b,args...));} TA inline void Mmul(T &a,T b,Args... args) {Mmul(a,Cmul(b,args...));} TA inline T Cadd(T a,T b,Args... args) {return Cadd(Cadd(a,b),args...);} TA inline T Cdel(T a,T b,Args... args) {return Cdel(Cdel(a,b),args...);} TA inline T Cmul(T a,T b,Args... args) {return Cmul(Cmul(a,b),args...);} TT inline T qpow(T a,T b) {int res=1; while(b) {if(b&1) Mmul(res,a); Mmul(a,a); b>>=1;} return res;} TT inline T qmul(T a,T b) {int res=0; while(b) {if(b&1) Madd(res,a); Madd(a,a); b>>=1;} return res;} TT inline T spow(T a,T b) {int res=1; while(b) {if(b&1) res=qmul(res,a); a=qmul(a,a); b>>=1;} return res;} TT inline void exgcd(T A,T B,T &X,T &Y) {if(!B) return X=1,Y=0,void(); exgcd(B,A%B,Y,X),Y-=X*(A/B);} TT inline T Ginv(T x) {T A=0,B=0; exgcd(x,Mod,A,B); return Cmod(A);} #undef TT #undef TA } using namespace MTool; inline void file() { freopen(".in","r",stdin); freopen(".out","w",stdout); return; } bool Mbe; namespace LgxTpre { static const int MAX=200010; static const int inf=2147483647; static const int INF=4557430888798830399; static const int mod=1e9+7; static const int bas=131; static const int top=100000; int n,m,q,x,y,z,k; int deg[MAX],flow[MAX]; vector<int> G[MAX],T[MAX]; char c; inline void lmy_forever() { auto add=[&](int x,int y)->void { G[x].eb(y),T[y].eb(x),++deg[y]; }; auto tpsort=[&]()->void { queue<int> Q; flow[1]=m; for(int i=1;i<=n+top;++i) if(!deg[i]) Q.push(i); while(!Q.empty()) { int now=Q.front(); Q.pop(); if(((int)G[now].size())==2) flow[G[now][0]]+=(flow[now]+1)/2,flow[G[now][1]]+=flow[now]/2; else if(((int)G[now].size())==1) flow[G[now][0]]+=flow[now]; for(auto to:G[now]) if(!--deg[to]) Q.push(to); } }; auto dfs=[&](auto dfs,int now,int kth) { if(flow[now]<kth) return puts("none"),void(); else if(now==1) return write(kth,'\n'); int to=T[now][0]; if(((int)T[now].size())==2) { int _to=T[now][1],mix=min(flow[to],flow[_to]); if(mix*2<kth) kth-=mix,to=flow[to]>flow[_to]?to:_to; else if(kth&1) kth=kth/2+1; else kth/=2,to=_to; } if(((int)G[to].size())==2) kth=kth*2-(G[to][0]==now); dfs(dfs,to,kth); }; read(m,n,q); for(int i=1;i<=n;++i) { do c=getchar(); while(c!='S'&&c!='M'); read(x,y,z); if(c=='S') add(x,i+top),add(i+top,y),add(i+top,z); if(c=='M') add(x,i+top),add(y,i+top),add(i+top,z); } tpsort(); while(q--) read(x,k),dfs(dfs,x,k); return; } } bool Med; signed main() { // file(); fprintf(stderr,"%.3lf MB\n",abs(&Med-&Mbe)/1048576.0); int Tbe=clock(); LgxTpre::lmy_forever(); int Ted=clock(); cerr<<1e3*(Ted-Tbe)/CLOCKS_PER_SEC<<" ms\n"; return (0-0); }
- 1
信息
- ID
- 6109
- 时间
- 3000ms
- 内存
- 256MiB
- 难度
- 4
- 标签
- 递交数
- 0
- 已通过
- 0
- 上传者