2021年度训练联盟热身训练赛第二场 J-Lowest Common Ancestor 进制转换,LCA

本文主要是介绍2021年度训练联盟热身训练赛第二场 J-Lowest Common Ancestor 进制转换,LCA,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目链接

https://ac.nowcoder.com/acm/contest/12794/J

题意

满二叉树,层序遍历给出编号,多次询问求两点公共祖先。其中点编号以十六进制串给出(1000位),输出也是十六进制

思路

满二叉树层序遍历的LCA没什么好说的,对于u和v,一直对u和v编号大的除二,直到相等就找到了

看到十六进制,加上直接除二这个操作就别考虑十进制数了,用二进制串处理,二进制数除二就是右移,也就是说两个二进制编号的LCA就是他们最长公共前缀。

至于十六进制和二进制转换,直接看代码吧

复杂度

O ( n ) O(n) O(n)

代码
#include<cstdio>
#include<iostream>
#include<iomanip>
#include<map>
#include<unordered_map>
#include<string>
#include<queue>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<cstdlib> 
#include<chrono>
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define endl "\n"
#define int long long
//#define double long double
using namespace std;typedef long long ll;const int maxn=200505;const int inf=0x3f3f3f3f;int n,m,k;int sum[maxn],max_[maxn];int a[maxn];struct custom_hash {static uint64_t splitmix64(uint64_t x) {x += 0x9e3779b97f4a7c15;x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;x = (x ^ (x >> 27)) * 0x94d049bb133111eb;return x ^ (x >> 31);}size_t operator()(uint64_t x) const {static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();return splitmix64(x + FIXED_RANDOM);}};string s1,s2,s3,s4;string ans1,ans2;string shiliu_er(string &str){string res;for(int i=0;i<str.size();i++){char ch=str[i];if(ch=='0') res+="0000";else if (ch == '1') res += "0001";else if (ch == '2') res += "0010";else if (ch == '3') res += "0011";else if (ch == '4') res += "0100";else if (ch == '5') res += "0101";else if (ch == '6') res += "0110";else if (ch == '7')res += "0111";else if (ch == '8')res += "1000";else if (ch == '9')res += "1001";else if (ch == 'a')res += "1010";else if (ch == 'b')res += "1011";else if (ch == 'c')res += "1100";else if (ch == 'd')res += "1101";else if (ch == 'e') res += "1110";else if (ch == 'f') res += "1111";}string t;bool over=0;for(int i=0;i<res.size();i++){if(over)    t+=res[i];else{if(res[i]=='0') continue;else{over=1;t+=res[i];}}}return t;}string er_shiliu(string &str){int i=str.size()-1;//cout<<str<<endl;string res;while(i>=3){string t;t+=str[i-3];t+=str[i-2];t+=str[i-1];t+=str[i];if(t=="0000") res+="0";else if (t == "0001") res += "1";else if (t == "0010") res += "2";else if (t == "0011") res += "3";else if (t == "0100") res += "4";else if (t == "0101") res += "5";else if (t == "0110") res += "6";else if (t == "0111")res += "7";else if (t == "1000")res += "8";else if (t == "1001")res += "9";else if (t == "1010")res += "a";else if (t == "1011")res += "b";else if (t == "1100")res += "c";else if (t == "1101")res += "d";else if (t == "1110") res += "e";else if (t == "1111") res += "f";i-=4;}if(i==-1){}else if(i==0){res+='1';}else if(i==1){if(str[i]=='1') res+="3";else            res+="2";}else if(i==2){if(str[1]=='0'){if(str[2]=='1') res+='5';else            res+='4';}else{if(str[2]=='1') res+='7';else            res+='6';}}reverse(res.begin(),res.end());//cout<<res<<endl;return res;}signed main(){IOS#ifndef ONLINE_JUDGEfreopen("D:\\_ACM_code\\IO\\in.txt","r",stdin);freopen("D:\\_ACM_code\\IO\\out.txt","w",stdout);#endifint tn;cin>>tn;for(int jj=1;jj<=tn;jj++){cin>>s1>>s2;s3=shiliu_er(s1),s4=shiliu_er(s2);ans1.clear();for(int i=0;i<min(s3.size(),s4.size());i++){if(s3[i]==s4[i])    ans1+=s3[i];else    break;}ans2=er_shiliu(ans1);cout<<"Case #"<<jj<<": ";cout<<ans2<<endl<<endl;}} 

这篇关于2021年度训练联盟热身训练赛第二场 J-Lowest Common Ancestor 进制转换,LCA的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/858190

相关文章

poj1330(LCA最近公共祖先)

题意:求最近公共祖先 思路:之前学习了树链剖分,然后我就用树链剖分的一小部分知识就可以解这个题目了,记录每个结点的fa和depth。然后查找时,每次将depth大的结点往上走直到x = y。 代码如下: #include<iostream>#include<algorithm>#include<stdio.h>#include<math.h>#include<cstring>

usaco 1.2 Palindromic Squares(进制转化)

考察进制转化 注意一些细节就可以了 直接上代码: /*ID: who jayLANG: C++TASK: palsquare*/#include<stdio.h>int x[20],xlen,y[20],ylen,B;void change(int n){int m;m=n;xlen=0;while(m){x[++xlen]=m%B;m/=B;}m=n*n;ylen=0;whi

uva 10061 How many zero's and how many digits ?(不同进制阶乘末尾几个0)+poj 1401

题意是求在base进制下的 n!的结果有几位数,末尾有几个0。 想起刚开始的时候做的一道10进制下的n阶乘末尾有几个零,以及之前有做过的一道n阶乘的位数。 当时都是在10进制下的。 10进制下的做法是: 1. n阶位数:直接 lg(n!)就是得数的位数。 2. n阶末尾0的个数:由于2 * 5 将会在得数中以0的形式存在,所以计算2或者计算5,由于因子中出现5必然出现2,所以直接一

MiniGPT-3D, 首个高效的3D点云大语言模型,仅需一张RTX3090显卡,训练一天时间,已开源

项目主页:https://tangyuan96.github.io/minigpt_3d_project_page/ 代码:https://github.com/TangYuan96/MiniGPT-3D 论文:https://arxiv.org/pdf/2405.01413 MiniGPT-3D在多个任务上取得了SoTA,被ACM MM2024接收,只拥有47.8M的可训练参数,在一张RTX

Spark MLlib模型训练—聚类算法 PIC(Power Iteration Clustering)

Spark MLlib模型训练—聚类算法 PIC(Power Iteration Clustering) Power Iteration Clustering (PIC) 是一种基于图的聚类算法,用于在大规模数据集上进行高效的社区检测。PIC 算法的核心思想是通过迭代图的幂运算来发现数据中的潜在簇。该算法适用于处理大规模图数据,特别是在社交网络分析、推荐系统和生物信息学等领域具有广泛应用。Spa

PDF 软件如何帮助您编辑、转换和保护文件。

如何找到最好的 PDF 编辑器。 无论您是在为您的企业寻找更高效的 PDF 解决方案,还是尝试组织和编辑主文档,PDF 编辑器都可以在一个地方提供您需要的所有工具。市面上有很多 PDF 编辑器 — 在决定哪个最适合您时,请考虑这些因素。 1. 确定您的 PDF 文档软件需求。 不同的 PDF 文档软件程序可以具有不同的功能,因此在决定哪个是最适合您的 PDF 软件之前,请花点时间评估您的

SigLIP——采用sigmoid损失的图文预训练方式

SigLIP——采用sigmoid损失的图文预训练方式 FesianXu 20240825 at Wechat Search Team 前言 CLIP中的infoNCE损失是一种对比性损失,在SigLIP这个工作中,作者提出采用非对比性的sigmoid损失,能够更高效地进行图文预训练,本文进行介绍。如有谬误请见谅并联系指出,本文遵守CC 4.0 BY-SA版权协议,转载请联系作者并注

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };

Detectorn2预训练模型复现:数据准备、训练命令、日志分析与输出目录

Detectorn2预训练模型复现:数据准备、训练命令、日志分析与输出目录 在深度学习项目中,目标检测是一项重要的任务。本文将详细介绍如何使用Detectron2进行目标检测模型的复现训练,涵盖训练数据准备、训练命令、训练日志分析、训练指标以及训练输出目录的各个文件及其作用。特别地,我们将演示在训练过程中出现中断后,如何使用 resume 功能继续训练,并将我们复现的模型与Model Zoo中的

GPU 计算 CMPS224 2021 学习笔记 02

并行类型 (1)任务并行 (2)数据并行 CPU & GPU CPU和GPU拥有相互独立的内存空间,需要在两者之间相互传输数据。 (1)分配GPU内存 (2)将CPU上的数据复制到GPU上 (3)在GPU上对数据进行计算操作 (4)将计算结果从GPU复制到CPU上 (5)释放GPU内存 CUDA内存管理API (1)分配内存 cudaErro