結果

問題 No.2718 Best Consonance
ユーザー GOTKAKOGOTKAKO
提出日時 2024-04-05 22:37:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,127 ms / 4,000 ms
コード長 1,360 bytes
コンパイル時間 2,740 ms
コンパイル使用メモリ 222,548 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-10-02 12:49:57
合計ジャッジ時間 39,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 693 ms
12,432 KB
testcase_01 AC 689 ms
12,528 KB
testcase_02 AC 691 ms
12,612 KB
testcase_03 AC 694 ms
12,592 KB
testcase_04 AC 682 ms
12,624 KB
testcase_05 AC 689 ms
12,648 KB
testcase_06 AC 689 ms
12,460 KB
testcase_07 AC 678 ms
12,584 KB
testcase_08 AC 694 ms
12,604 KB
testcase_09 AC 688 ms
12,800 KB
testcase_10 AC 695 ms
12,796 KB
testcase_11 AC 681 ms
12,888 KB
testcase_12 AC 681 ms
12,900 KB
testcase_13 AC 686 ms
12,828 KB
testcase_14 AC 1,046 ms
61,460 KB
testcase_15 AC 967 ms
51,940 KB
testcase_16 AC 1,010 ms
54,596 KB
testcase_17 AC 941 ms
46,084 KB
testcase_18 AC 1,013 ms
56,616 KB
testcase_19 AC 969 ms
52,620 KB
testcase_20 AC 1,062 ms
61,672 KB
testcase_21 AC 1,039 ms
59,388 KB
testcase_22 AC 1,043 ms
59,572 KB
testcase_23 AC 917 ms
43,036 KB
testcase_24 AC 1,102 ms
72,216 KB
testcase_25 AC 1,080 ms
72,520 KB
testcase_26 AC 1,087 ms
71,852 KB
testcase_27 AC 1,091 ms
71,812 KB
testcase_28 AC 1,101 ms
72,428 KB
testcase_29 AC 1,113 ms
71,836 KB
testcase_30 AC 1,111 ms
72,576 KB
testcase_31 AC 1,122 ms
71,664 KB
testcase_32 AC 1,127 ms
71,812 KB
testcase_33 AC 1,100 ms
71,728 KB
testcase_34 AC 693 ms
12,496 KB
testcase_35 AC 695 ms
12,436 KB
testcase_36 AC 740 ms
14,304 KB
testcase_37 AC 691 ms
12,572 KB
testcase_38 AC 750 ms
14,352 KB
testcase_39 AC 700 ms
12,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int N; cin >> N;
    vector<vector<long long>> AB(200001);
    for(int i=0; i<N; i++){
        int a,b; cin >> a >> b;
        AB.at(a).push_back(b);
    }

    vector<vector<pair<long long,long long>>> D(200001);
    for(int i=1; i<=200000; i++){
        long long a = i;
        sort(AB.at(i).rbegin(),AB.at(i).rend());
        vector<int> d;
        for(int k=1; k*k<=a; k++){
            if(a%k) continue;
            d.push_back(k);
            if(k*k != a) d.push_back(a/k);
        }
        for(int l=0; l<min((int)AB.at(i).size(),2); l++){
            long long b = AB.at(i).at(l);
            for(auto dd : d) D.at(dd).push_back({a*b,a});
        }
    }

    long long answer = 0;
    for(int i=1; i<=200000; i++){
        int n = D.at(i).size();
        vector<long long> mina(n);
        sort(D.at(i).begin(),D.at(i).end());
        for(int k=n-1; k>=0; k--){
            if(k != n-1) mina.at(k) = min(D.at(i).at(k).second,mina.at(k+1));
            else mina.at(k) = D.at(i).at(k).second;
        }

        for(int k=0; k<n-1; k++){
            auto[limit,a1] = D.at(i).at(k);
            auto[ign,a2] = D.at(i).at(k+1);
            answer = max(answer,limit/(a1*a2/i));
        }
    }
    cout << answer << endl;
}
0