結果

問題 No.2008 Super Worker
ユーザー ぷらぷら
提出日時 2022-07-15 22:49:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 208,164 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-27 19:49:21
合計ジャッジ時間 5,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 113 ms
6,944 KB
testcase_24 AC 111 ms
6,944 KB
testcase_25 AC 112 ms
6,940 KB
testcase_26 AC 114 ms
6,940 KB
testcase_27 AC 115 ms
6,940 KB
testcase_28 AC 151 ms
6,944 KB
testcase_29 AC 153 ms
6,944 KB
testcase_30 AC 153 ms
6,944 KB
testcase_31 AC 154 ms
6,948 KB
testcase_32 AC 152 ms
6,944 KB
testcase_33 AC 149 ms
6,944 KB
testcase_34 AC 155 ms
6,944 KB
testcase_35 AC 104 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 1000000007;

bool flag(pair<int,int>a,pair<int,int>b) {
    if(1ll*b.second*a.first+b.first < 1ll*a.second*b.first+a.first) {
        return true;
    }
    return false;
}

int main() {
    int N;
    cin >> N;
    vector<int>A(N),B(N);
    vector<pair<int,int>>tmp(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> B[i];
        tmp[i] = {A[i],B[i]};
    }
    sort(tmp.begin(),tmp.end(),flag);
    long long ans = 0,x = 1;
    for(int i = 0; i < N; i++) {
        ans += x*tmp[i].first%mod;
        ans %= mod;
        x *= tmp[i].second;
        x %= mod;
    }
    cout << ans << endl;
}
0