結果

問題 No.2207 pCr検査
ユーザー tatyamtatyam
提出日時 2022-07-13 01:35:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 507 ms / 3,000 ms
コード長 927 bytes
コンパイル時間 2,917 ms
コンパイル使用メモリ 247,180 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-02 18:42:16
合計ジャッジ時間 13,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 402 ms
5,632 KB
testcase_03 AC 235 ms
5,376 KB
testcase_04 AC 295 ms
5,376 KB
testcase_05 AC 398 ms
6,400 KB
testcase_06 AC 322 ms
5,376 KB
testcase_07 AC 219 ms
5,376 KB
testcase_08 AC 131 ms
5,376 KB
testcase_09 AC 312 ms
5,632 KB
testcase_10 AC 190 ms
5,376 KB
testcase_11 AC 297 ms
5,632 KB
testcase_12 AC 346 ms
6,016 KB
testcase_13 AC 206 ms
5,376 KB
testcase_14 AC 53 ms
5,376 KB
testcase_15 AC 372 ms
5,376 KB
testcase_16 AC 187 ms
5,376 KB
testcase_17 AC 301 ms
5,376 KB
testcase_18 AC 221 ms
5,376 KB
testcase_19 AC 128 ms
5,376 KB
testcase_20 AC 177 ms
5,376 KB
testcase_21 AC 413 ms
6,400 KB
testcase_22 AC 506 ms
8,448 KB
testcase_23 AC 507 ms
8,448 KB
testcase_24 AC 62 ms
5,376 KB
testcase_25 AC 180 ms
5,376 KB
testcase_26 AC 156 ms
5,376 KB
testcase_27 AC 296 ms
5,376 KB
testcase_28 AC 444 ms
6,912 KB
testcase_29 AC 443 ms
6,912 KB
testcase_30 AC 444 ms
6,784 KB
testcase_31 AC 441 ms
6,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:36:32: warning: 'R' may be used uninitialized [-Wmaybe-uninitialized]
   36 |         if(e != f(P) - f(R) - f(P - R)){
      |                               ~^~~~~~~
main.cpp:19:9: note: 'R' was declared here
   19 |     int R;
      |         ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ld = long double;


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int k;
    cin >> k;
    vector<pair<int, int>> N(k);
    ld lgN = 0;
    for(auto& [p, e] : N){
        cin >> p >> e;
        lgN += logl(p) * e;
    }
    const int P = N.back().first;
    ld lg = 0, err = INFINITY;
    int R;
    for(int i = 0; i < P / 2; i++){
        lg += logl(P - i) - logl(i + 1);
        if(err > abs(lgN - lg)){
            err = abs(lgN - lg);
            R = i + 1;
        }
    }
    for(auto [p, e] : N){
        auto f = [p = p](int x){
            int ans = 0;
            while(1){
                x /= p;
                if(x == 0) return ans;
                ans += x;
            }
        };
        if(e != f(P) - f(R) - f(P - R)){
            cout << "-1 -1" << endl;
            return 0;
        }
    }
    cout << P << ' ' << R << endl;
}
0