Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
40738 王籽易 折纸 C++ 通过 100 0 MS 252 KB 450 2022-06-04 12:53:30

Tests(10/10):


#include <bits/stdc++.h> using namespace std; int w,h,x,y; int f2(int m,int n){ int as=0; while(m!=n){ if(n*2>=m){ as++; break; } if(m%2==0){ m/=2; } else{ m/=2; m++; } as++; } return as; } int f1(int a,int b){ int ans=f2(a,x)+f2(b,y); return ans; } int main(){ cin>>w>>h>>x>>y; if((x>w&&x>h)||(y>w&&y>h)){ cout<<-1; } else{ cout<<min(f1(w,h),f1(h,w)); } return 0; }


测评信息: