結果

問題 No.750 Frac #1
ユーザー tonegawatonegawa
提出日時 2020-08-10 08:18:02
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,234 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 100,660 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 01:48:04
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <algorithm>
#include <set>
#include <map>
#include <bitset>
#include <cmath>
#include <functional>
#include <iomanip>
#define vll vector<ll>
#define vvvl vector<vvl>
#define vvl vector<vector<ll>>
#define VV(a, b, c, d) vector<vector<d>>(a, vector<d>(b, c))
#define VVV(a, b, c, d) vector<vvl>(a, vvl(b, vll (c, d)));
#define re(c, b) for(ll c=0;c<b;c++)
#define all(obj) (obj).begin(), (obj).end()
typedef long long int ll;
typedef long double ld;
using namespace std;


ll gcd(ll a, ll b){
  if(b<a) swap(a, b);
  ll r = a % b;
  if(r==0) return b;
  while(r!=0) r = a % b, a = b, b = r;
  return a;
}

struct fraction{
  ll a, b;
  fraction(){};
  fraction(ll A, ll B){// A/B
    if(A==0) B = 1;
    else{
      if(B<0) A*=-1, B*=-1;
      ll g = gcd(abs(A), abs(B));
      A/=g, B/=g;
    }
    a = A, b = B;
  }
  bool operator == (fraction r) const{
    return (this->a==r.a && this->b==r.b);
  }

  bool operator < (fraction r) const {
    __int128_t left = (__int128_t)this->a*(__int128_t)r.b;
    __int128_t right = (__int128_t)r.a*(__int128_t)this->b;
    return left < right;
  }

  bool operator <= (fraction r) const{
    __int128_t left = (__int128_t)this->a*(__int128_t)r.b;
    __int128_t right = (__int128_t)r.a*(__int128_t)this->b;
    std::cout << (ll)left << " " << (ll)right << '\n';
    return left <= right;
  }
  bool operator > (fraction r) const{
    __int128_t left = (__int128_t)this->a*(__int128_t)r.b;
    __int128_t right = (__int128_t)r.a*(__int128_t)this->b;
    return left > right;
  }
  bool operator >= (fraction r) const{
    __int128_t left = (__int128_t)this->a*(__int128_t)r.b;
    __int128_t right = (__int128_t)r.a*(__int128_t)this->b;
    return left >= right;
  }

};
void print(fraction f){
  printf("(%lld / %lld)", f.a, f.b);
}
void println(fraction f){
  printf("(%lld / %lld)\n", f.a, f.b);
}
int main(int argc, char const *argv[]) {
  ll n;std::cin >> n;
  vector<fraction> v(n);
  for(int i=0;i<n;i++) {
    ll a, b;std::cin >> a >> b;
    v[i] = fraction(a, b);
  }
  sort(all(v));
  reverse(all(v));
  for(int i=0;i<n;i++){
    std::cout << v[i].a << " " << v[i].b << '\n';
  }

}
0