中石油訓練賽 - Historical Maths(二分)
題目大意:給出三個十進位制下的數字 A ,B ,C ,問是否存在一個 k ,滿足在 k 進位制下有 A * B = C
題目分析:需要觀察出進位制與 A * B 和 C 的大小之間具有單調性,如果進位制較小的話,那麼進位自然就會變多,從而使得位數邊長,整體數字就會變大,反之亦然,所以據此,可以直接二分答案,用一個 check 進行檢查,需要注意的是答案會爆 long long,所以整體用 __int128 進行計算即可,二分的下限設定為所有數字的最大值 + 1,上限設定為 1e20
程式碼:
//#pragma GCC optimize(2)
//#pragma GCC optimize("Ofast","inline","-ffast-math")
//#pragma GCC target("avx,sse2,sse3,sse4,mmx")
#include<iostream>
#include<cstdio>
#include<string>
#include<ctime>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<stack>
#include<climits>
#include<queue>
#include<map>
#include<set>
#include<sstream>
#include<cassert>
#include<bitset>
#include<unordered_map>
using namespace std;
typedef __int128 LL;
typedef unsigned long long ull;
const int inf=0x3f3f3f3f;
const int N=1e3+100;
template <typename T>inline void read(T& t){
t=0;
register char ch=getchar();
while(!('0'<=ch&&ch<='9')){
if(ch=='-') t*=-1;
ch=getchar();
}
while(('0'<=ch&&ch<='9')){
t=((t<<1)+(t<<3))+ch-'0';
ch=getchar();
}
}
template <typename T>inline void write(T x){
if(x<0) putchar('-'),x=~(x-1);
int s[50],top=0;
while(x) s[++top]=x%10,x/=10;
if(!top) s[++top]=0;
while(top) putchar(s[top--]+'0');
}
LL a[N],b[N],c[N],cc[N*N];
int la,lb,lc;
LL l=0,r=1e20;
void input(int& n,LL a[])
{
scanf("%d",&n);
n--;
for(int i=n;i>=0;i--)
{
read(a[i]);
l=max(l,a[i]+1);
}
}
int check(int pos)//1:大了,-1:小了
{
if(pos>lc)
return -1;
if(pos<lc)
return 1;
for(int i=pos;i>=0;i--)
{
if(cc[i]>c[i])
return -1;
if(cc[i]<c[i])
return 1;
}
return 0;
}
int cal(LL mid)
{
memset(cc,0,sizeof(cc));
for(int i=0;i<=la;i++)
for(int j=0;j<=lb;j++)
cc[i+j]+=a[i]*b[j];
int pos=0;
while(pos<=la+lb||cc[pos])
{
cc[pos+1]+=cc[pos]/mid;
cc[pos]%=mid;
pos++;
}
return check(pos-1);
}
int main()
{
#ifndef ONLINE_JUDGE
// freopen("data.in.txt","r",stdin);
// freopen("data.out.txt","w",stdout);
#endif
// ios::sync_with_stdio(false);
input(la,a);
input(lb,b);
input(lc,c);
while(l<=r)
{
LL mid=l+r>>1;
int t=cal(mid);
if(t==0)
{
write(mid);
return 0;
}
else if(t==1)
r=mid-1;
else if(t==-1)
l=mid+1;
}
puts("impossible");
return 0;
}
相關文章
- 4.17訓練賽
- 【vjudge訓練記錄】11月個人訓練賽1
- 【hdu】口算訓練/二分/質因數分解
- 20241114 NOIP訓練賽 T3
- 2024.09.19短時訓練賽總結
- 2024~2025 賽季訓練日誌
- 10.5組隊訓練賽-2024CCPC山東省賽
- 【學校訓練記錄】10月個人訓練賽3個人題解
- NOIP 2024 遊記 & 賽前訓練總結
- ZZJC新生訓練賽第七場題解
- ZZJC新生訓練賽第九場題解
- ZZJC新生訓練賽第二場題解
- ZZJC新生訓練賽第十八場題解
- 10-09訓練賽week3-C3
- 【牛客訓練記錄】牛客周賽 Round 69
- 【牛客訓練記錄】牛客周賽 Round 70
- 資訊學奧賽初賽天天練-81-NOIP2015普及組-完善程式-二分答案、二分查詢、中位數、二分邊界、二分時間複雜度時間複雜度
- 中國石油大學新生訓練賽第四場:Dominoc
- 演算法競賽入門經典訓練指南 pdf演算法
- 20240622訓練
- 20240610訓練
- CS209A Analysis of the Olympic Historical Dataset
- 資訊學奧賽初賽天天練-93-CSP-S2023閱讀程式3-sort排序、同底對數求和、二分查詢、二分答案排序
- 【牛客訓練記錄】中國地質大學(武漢)2024年新生賽(同步賽)
- 2024.8.20 DS訓練
- 24.8.18 DP訓練
- acm訓練題ACM
- 擴充訓練
- 自訓練 + 預訓練 = 更好的自然語言理解模型模型
- 擴散模型訓練方法一直錯了!謝賽寧:Representation matters模型
- 2、PyTorch訓練YOLOv11—訓練篇(detect)—Windows系統PyTorchYOLOv1Windows
- PyTorch 模型訓練實⽤教程(程式碼訓練步驟講解)PyTorch模型
- 2024.11.20訓練記錄
- 2024.11.05 刷題訓練
- 專項訓練們
- 20241103 訓練記錄
- CF專項訓練
- 20240927 隨機訓練隨機