結果

問題 No.2008 Super Worker
ユーザー V_MelvilleV_Melville
提出日時 2022-07-16 00:12:47
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 5,305 ms
コンパイル使用メモリ 313,732 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 22:02:24
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define fi first
#define se second

using std::cin;
using std::cout;
using std::vector;
using ll = long long;
using P = std::pair<ll, ll>;
using mint = modint1000000007;

int main() {
    int n;
    cin >> n;
    
    vector<P> p(n);
    rep(i, n) cin >> p[i].fi;
    rep(i, n) cin >> p[i].se;
    
    sort(p.begin(), p.end(), [&](P l, P r) {
        return r.fi*(l.se-1) > l.fi*(r.se-1);
    });
    
    mint ans, x = 1;
    for (auto [a, b] : p) {
        ans += x*a;
        x *= b;
    }
    
    cout << ans.val() << '\n';
    
    return 0;
}
0