首页 > 代码库 > 【数据结构】Not so Mobile (6-9)
【数据结构】Not so Mobile (6-9)
[UVA839]Not so Mobile
算法入门经典第6章6-9(P157)
题目大意:输入一个树状天平,根据力矩相等原则判断是否平衡。
试题分析:貌似没有什么难点……
#include<iostream>#include<cstring>#include<cstdio>#include<vector>#include<queue>#include<stack>#include<algorithm>using namespace std;inline int read(){ int x=0,f=1;char c=getchar(); for(;!isdigit(c);c=getchar()) if(c==‘-‘) f=-1; for(;isdigit(c);c=getchar()) x=x*10+c-‘0‘; return x*f;}const int MAXN=100001;const int INF=999999;int N,M;int T;int solve(int &k){ int Wl,Wr,Dl,Dr; Wl=read(),Dl=read(),Wr=read(),Dr=read(); bool Ql=1,Qr=1; if(!Wl) Ql=solve(Wl); if(!Wr) Qr=solve(Wr); k=Wl+Wr; return Ql&&Qr&&(Wl*Dl==Wr*Dr);}int main(){ T=read(); while(T--){ if(solve(M)) puts("YES"); else puts("NO"); if(T) printf("\n"); }}
【数据结构】Not so Mobile (6-9)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。