結果

問題 No.2008 Super Worker
ユーザー SSRSSSRS
提出日時 2022-07-15 21:27:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 1,718 ms
コンパイル使用メモリ 174,512 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-27 16:51:25
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
struct fraction{
  long long a, b;
  fraction(){
  }
  fraction(long long a, long long b): a(a), b(b){
  }
  bool operator <(fraction x) const{
    return a * x.b < x.a * b;
  }
};
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> B(N);
  for (int i = 0; i < N; i++){
    cin >> B[i];
  }
  vector<pair<fraction, int>> P(N);
  for (int i = 0; i < N; i++){
    P[i] = make_pair(fraction(A[i], B[i] - 1), i);
  }
  sort(P.begin(), P.end());
  long long ans = 0;
  long long x = 1;
  for (int i = 0; i < N; i++){
    int p = P[i].second;
    ans += x * A[p] % MOD;
    x *= B[p];
    x %= MOD;
  }
  ans %= MOD;
  cout << ans << endl;
}
0