Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

分治+人品

Posted by cghAndy at 2014-04-09 20:25:40 on Problem 1000
A+B 做法简单,耗时很少
#include<cstdio>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
    srand(time(0)*time(0));
    int a,b;long long l=0,r=(1<<31)-1,ans;
    scanf("%d%d",&a,&b);
    while(1){
        ans=(rand()*rand())%r+l;
        if(ans>a+b)r=ans-l;
        else if(ans<a+b)l=ans;
        else{printf("%lld\n",ans);return 0;}
    }
}
祝你在POJ快乐!

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator