結果

問題 No.550 夏休みの思い出(1)
ユーザー beetbeet
提出日時 2017-07-28 23:09:05
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,864 bytes
コンパイル時間 1,425 ms
コンパイル使用メモリ 164,708 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-04-18 11:33:20
合計ジャッジ時間 7,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
std::ostream &operator<<(std::ostream &dest, __int128_t value) {
  std::ostream::sentry s(dest);
  if (s) {
    __uint128_t tmp = value < 0 ? -value : value;
    char buffer[128];
    char *d = std::end(buffer);
    do {
      --d;
      *d = "0123456789"[tmp % 10];
      tmp /= 10;
    } while (tmp != 0);
    if (value < 0) {
      --d;
      *d = '-';
    }
    int len = std::end(buffer) - d;
    if (dest.rdbuf()->sputn(d, len) != len) {
      dest.setstate(std::ios_base::badbit);
    }
  }
  return dest;
}
using Int = __int128;
Int sqrt(Int A){
  Int L = 0, R = LLONG_MAX;
  while(L+1<R){
    Int M=(L+R)/2;
    if(M*M<=A) L=M;
    else R=M;
  }
  return L;
}
int a,b,c;
Int A,B,C;
Int calc(Int x){
  return x*x*x+A*x*x+B*x+C;
}
signed main(){
  cin>>a>>b>>c;
  A=a;B=b;C=c;
  Int P=(A-sqrt(A*A-3*B))/3,Q=(A+sqrt(A*A-3*B))/3;
  {
    Int L=INT_MIN,R=-Q;
    while(calc(L-1)>calc(L)) L--;
    while(calc(R)>calc(R+1)) R++;
    while(calc(L)>calc(L+1)) L++;
    while(calc(R-1)>calc(R)) R--;
    while(L+1<R){
      Int M=(L+R)/2;
      //cout<<M<<":"<<calc(M)<<endl;
      if(calc(M)<=0) L=M;
      else R=M;
    }
    cout<<L<<" ";
  }
  {
    Int L=-Q-100,R=-P+100;
    while(calc(L)<calc(L+1)) L++;
    while(calc(R-1)<calc(R)) R--;
    //cout<<calc(L)<<" "<<calc(R)<<endl;
    while(L+1<R){
      Int M=(L+R)/2;
      //cout<<M<<":"<<calc(M)<<endl;
      if(calc(M)>=0) L=M;
      else R=M;
    }
    cout<<L<<" ";
  }
  {
    Int L=-P,R=INT_MAX;
    while(calc(L-1)>calc(L)) L--;
    while(calc(R)>calc(R+1)) R++;
    while(calc(L)>calc(L+1)) L++;
    while(calc(R-1)>calc(R)) R--;
    //cout<<calc(L)<<" "<<calc(R)<<endl;
    while(L+1<R){
      Int M=(L+R)/2;
      //cout<<M<<":"<<calc(M)<<endl;
      if(calc(M)<=0) L=M;
      else R=M;
    }
    cout<<L<<endl;
  }
  return 0;
}
0