C - AtCoDeer and Election Report (atcoder.jp)
输入
4
1 1
1 1
1 5
1 100
输出
101
输入
5
3 10
48 17
31 199
231 23
3 2
输出
6930
每次给定两个人的比分,最开始每个人至少是1票,求最后两个人投票的总数的最小值
也就是可以知道最开始的比分就是当时两个人的实际票数
每次当有人的比分比前面的小的时候,看看要扩大多少倍,
#include <iostream>
#include <vector>
#include <bits/stdc++.h>
#include <unordered_map>
#include <unordered_set>
#include <queue>
#include <set>
#include <stack>
#include <algorithm>
#define x first
#define y second
#define pb emplace_back
#define fu(i,a,b) for(int i=a;i<=b; ++ i)
#define fd(i,a,b) for(int i=a;i>=b; -- i)
#define endl '\n'
#define ms(x,y) memset(x,y,sizeof x)
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef vector<vector<LL>> VVL;
typedef vector<vector<int>> VVI;
typedef vector<LL> VL;
typedef vector<bool> VB;
typedef vector<int> VI;
typedef vector<string> VS;
typedef pair<int,int> PII;
typedef vector<PII> VPII;
typedef pair<PII,int> PIII;
typedef pair<double,double> PDD;
typedef pair<double,int> PDI;
typedef pair<char,int> PCI;
typedef pair<string,int> PSI;
typedef pair<int,string> PIS;
typedef pair<int,char> PIC;
typedef pair<LL,LL> PLL;
typedef __int128 i128;
typedef unsigned long long ULL;
const int N =2e3+ 10 ,M = N *100 ,INF = 0x3f3f3f3f,P = 131;
const double eps = 1e-8,DNF = 1e18;
const int mod = 1e9 + 7 ,base= 20010;
const LL LNF=(LL) INF * INF;
LL n,a,b;
LL k,la,lb;
inline void solve()
{
cin >> n ;
fu(i,1,n)
{
cin >> a >> b;
// 有其中一个的 比分 是减小的
if(a < la || b < lb)
{
// 之前的 比分和现在的比分 , 看看现在的比分要扩大多少倍,才能看做是从前一个状态转移过来的
k =max( (la + a -1)/a ,(lb+b-1)/b ) ;
la = 1ll * a * k ;
lb = 1ll * b * k ;
}
else
{
la = a;lb= b;
}
}
cout << la + lb << endl;
}
signed main()
{
// freopen("1.txt","r",stdin);
// #define int long long
// init(N-1);
ios
// cout << fixed<<setprecision(2);
int t=1;
// cin>>t;
int now = 1;
while(t -- )
{
// cout<<"Case ";
// cout<<"Case #";
// cout<<"Scenario #";
// cout<< now ++ <<": ";
// cout<< now ++ <<": \n";
solve();
}
return 0;
}