結果

問題 No.2207 pCr検査
ユーザー maksimmaksim
提出日時 2023-02-09 18:39:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,908 ms / 3,000 ms
コード長 969 bytes
コンパイル時間 1,594 ms
コンパイル使用メモリ 169,680 KB
実行使用メモリ 263,084 KB
最終ジャッジ日時 2024-07-06 20:26:39
合計ジャッジ時間 43,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
99,376 KB
testcase_01 AC 564 ms
99,504 KB
testcase_02 AC 1,069 ms
182,800 KB
testcase_03 AC 989 ms
158,512 KB
testcase_04 AC 908 ms
156,208 KB
testcase_05 AC 1,491 ms
211,380 KB
testcase_06 AC 713 ms
124,464 KB
testcase_07 AC 787 ms
136,624 KB
testcase_08 AC 778 ms
129,072 KB
testcase_09 AC 1,220 ms
184,748 KB
testcase_10 AC 605 ms
100,784 KB
testcase_11 AC 1,121 ms
176,052 KB
testcase_12 AC 1,595 ms
204,720 KB
testcase_13 AC 1,186 ms
161,332 KB
testcase_14 AC 735 ms
112,180 KB
testcase_15 AC 1,799 ms
202,544 KB
testcase_16 AC 1,094 ms
155,440 KB
testcase_17 AC 1,525 ms
186,032 KB
testcase_18 AC 1,305 ms
155,696 KB
testcase_19 AC 951 ms
135,380 KB
testcase_20 AC 1,177 ms
143,412 KB
testcase_21 AC 1,857 ms
228,016 KB
testcase_22 AC 1,901 ms
263,084 KB
testcase_23 AC 1,908 ms
263,084 KB
testcase_24 AC 760 ms
111,536 KB
testcase_25 AC 1,076 ms
151,092 KB
testcase_26 AC 1,036 ms
140,080 KB
testcase_27 AC 1,548 ms
175,920 KB
testcase_28 AC 1,833 ms
236,336 KB
testcase_29 AC 1,797 ms
236,332 KB
testcase_30 AC 1,870 ms
236,336 KB
testcase_31 AC 1,827 ms
236,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
const int maxn=1e7+5;
int cnt[maxn];int cnt1[maxn];bool used[maxn];int lp[maxn];vector<int> pr;
int sok=0;
void f1(int x,int val)
{
    sok-=(cnt1[x]==cnt[x]);cnt1[x]+=val;sok+=(cnt1[x]==cnt[x]);
}
void f(int x,int val)
{
    if(x==1) return;
    int o=lp[x];f1(o,val);
    f(x/o,val);
}
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    for(int i=2;i<maxn;++i) {if(!used[i]) {pr.push_back(i);for(int j=i;j<maxn;j+=i) {used[j]=true;lp[j]=i;}}}
    int n;cin>>n;
    pair<int,int> a[n];int p=1;
    for(int i=0;i<n;++i) {cin>>a[i].first>>a[i].second;cnt[a[i].first]=a[i].second;p=max(p,a[i].first);}
    for(int p:pr) if(cnt[p]==0) ++sok;
    for(int i=1;i<=p/2;++i)
    {
        f(p-i+1,1);
        f(i,-1);
        if(sok==pr.size())
        {
            cout<<p<<' '<<i<<endl;
            return 0;
        }
    }
    cout<<(-1)<<' '<<(-1)<<endl;
    return 0;
}
0