結果

問題 No.2207 pCr検査
ユーザー milanis48663220milanis48663220
提出日時 2023-02-03 22:37:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,345 ms / 3,000 ms
コード長 2,462 bytes
コンパイル時間 1,151 ms
コンパイル使用メモリ 118,556 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-07-02 20:44:39
合計ジャッジ時間 46,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
52,224 KB
testcase_01 AC 602 ms
52,352 KB
testcase_02 AC 953 ms
76,672 KB
testcase_03 AC 895 ms
70,016 KB
testcase_04 AC 833 ms
68,992 KB
testcase_05 AC 1,217 ms
85,760 KB
testcase_06 AC 685 ms
59,776 KB
testcase_07 AC 741 ms
63,488 KB
testcase_08 AC 733 ms
61,568 KB
testcase_09 AC 1,061 ms
77,824 KB
testcase_10 AC 609 ms
53,504 KB
testcase_11 AC 999 ms
75,264 KB
testcase_12 AC 2,056 ms
86,400 KB
testcase_13 AC 1,422 ms
72,448 KB
testcase_14 AC 778 ms
57,216 KB
testcase_15 AC 2,239 ms
91,136 KB
testcase_16 AC 1,338 ms
70,272 KB
testcase_17 AC 1,923 ms
83,328 KB
testcase_18 AC 1,547 ms
76,032 KB
testcase_19 AC 1,074 ms
64,384 KB
testcase_20 AC 1,394 ms
70,912 KB
testcase_21 AC 2,345 ms
93,056 KB
testcase_22 AC 2,035 ms
96,384 KB
testcase_23 AC 2,003 ms
96,384 KB
testcase_24 AC 870 ms
58,880 KB
testcase_25 AC 1,315 ms
69,632 KB
testcase_26 AC 1,269 ms
67,968 KB
testcase_27 AC 1,915 ms
82,944 KB
testcase_28 AC 1,496 ms
94,592 KB
testcase_29 AC 1,505 ms
94,592 KB
testcase_30 AC 1,519 ms
94,592 KB
testcase_31 AC 1,489 ms
94,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

const int N = 10000000;
int prime_fac[N+1];
bool is_prime[N+1];

void init(){
    for(int x = 2; x <= N; x++) is_prime[x] = true;
    for(int p = 2; p <= N; p++){
        if(!is_prime[p]) continue;
        for(int i = 1; i*p <= N; i++){
            if(i >= 2) is_prime[i*p] = false;
            prime_fac[i*p] = p;
        }
    }
}

int diff[N+1];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    init();
    int k; cin >> k;
    vector<int> p(k), e(k);
    for(int i = 0; i < k; i++) {
        cin >> p[i] >> e[i];
        diff[p[i]] += e[i];
    }
    int pp = p[k-1];
    int cnt_diff = k;
    auto add = [&](int q, int x){
        if(diff[q] == 0) cnt_diff++;
        diff[q] -= x;
        if(diff[q] == 0) cnt_diff--;
    };
    for(int x = 1; x <= pp; x++){
        // 分子にかける
        int cur = pp-x+1;
        while(cur != 1){
            add(prime_fac[cur], 1);
            cur /= prime_fac[cur];
        }
        // 分母にかける
        cur = x;
        while(cur != 1){
            add(prime_fac[cur], -1);
            cur /= prime_fac[cur];
        }
        if(cnt_diff == 0){
            cout << pp << ' ' << x << endl;
            return 0;
        }
    }
    cout << -1 << ' ' << -1 << endl;
}
0