首页 > 代码库 > Codeforces 346C Number Transformation II 构造
Codeforces 346C Number Transformation II 构造
题目链接:点击打开链接
= = 990+ms卡过
#include<stdio.h> #include<iostream> #include<string.h> #include<algorithm> #include<vector> #include<set> using namespace std; #define N 100010 #define L(x) (x<<1) #define R(x) (x<<1|1) #define ll int ll n,m,k,a,b; ll x[N]; bool cmp(ll z,ll y){return z>y;} set<int>myset; set<int>::iterator p; int main(){ ll i,j; while(cin>>n){ myset.clear(); for(i=1;i<=n;i++)scanf("%d",&j),myset.insert(j); cin>>a>>b; if(a==b){puts("0");continue;} n = myset.size(); i = 1; for(p = myset.begin(); p!=myset.end(); p++,i++)x[i] = *p; sort(x+1,x+1+n,cmp); ll step = 0; ll l = 1; while(x[l]>a && l<=n)l++; while(x[l]>(a>>1) && (a-x[l])>(a-b))l++; if(l>n){cout<<a-b<<endl;continue;} while(a!=b){ step++; ll now = 1, cha = a-b; for(i = l;i<=n;i++) { if(now>=x[i])break; ll tmp = a-((a/x[i])*x[i]); if(tmp<=now || tmp>cha)continue; now = tmp; } a-=now; while(x[l]>a&&l<=n)l++; while(x[l]>(a>>1) && (a-x[l])>cha)l++; if(l>n)break; } cout<<step+a-b<<endl; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。