結果

問題 No.2207 pCr検査
ユーザー HIcoderHIcoder
提出日時 2024-10-06 22:45:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,513 bytes
コンパイル時間 1,127 ms
コンパイル使用メモリ 118,940 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-10-06 22:46:19
合計ジャッジ時間 45,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    int k;
    cin>>k;
    vector<ll> p(k),e(k);
    for(int i=0;i<k;i++){
        cin>>p[i]>>e[i];
    }

    ll cp=p.back();
    vector<ll> mpf(cp+1);
    for(int i=2;i<=cp;i++){
        if(mpf[i]==0){
            for(int j=i;j<=cp;j+=i){
                mpf[j]=i;//jはiで割れる
            }
        }
    }

    ll dif=k;
    for(ll r=1;r<=cp/2;r++){

        
        for(ll tmp=cp-r+1;tmp!=1;tmp/=mpf[tmp]){
            // cp C tmp を試す.  tmp=cp-r+1,cp-r+2,...,cp

            //tmpを素因数分解する
            if(e[mpf[tmp]]==0){
                dif++;
            }
            e[mpf[tmp]]--;
            if(e[mpf[tmp]]!=0){
                dif--;
            }
        }
        for(ll tmp=r;tmp!=1;tmp/=mpf[tmp]){
            //cp C tmpを試す. tmp=1,2,3,...,r

            if(e[mpf[tmp]]==0){
                dif++;
            }
            e[mpf[tmp]]++;
            if(e[mpf[tmp]]!=0){
                dif--;
            }

            if(dif==0){
                cout<<cp<<' '<<r<<endl;
                return 0;
            }
        }

    }
    cout<<-1<<' '<<-1<<endl;


}
0