結果

問題 No.2207 pCr検査
ユーザー maksimmaksim
提出日時 2023-02-09 18:37:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 969 bytes
コンパイル時間 1,692 ms
コンパイル使用メモリ 171,100 KB
実行使用メモリ 265,072 KB
最終ジャッジ日時 2024-07-06 20:25:09
合計ジャッジ時間 62,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 759 ms
99,376 KB
testcase_01 AC 772 ms
99,376 KB
testcase_02 AC 1,305 ms
182,960 KB
testcase_03 AC 1,169 ms
158,388 KB
testcase_04 AC 1,126 ms
156,208 KB
testcase_05 AC 1,679 ms
211,500 KB
testcase_06 AC 852 ms
124,464 KB
testcase_07 AC 945 ms
136,628 KB
testcase_08 AC 972 ms
128,940 KB
testcase_09 AC 1,453 ms
184,880 KB
testcase_10 AC 761 ms
100,660 KB
testcase_11 AC 1,322 ms
176,052 KB
testcase_12 AC 2,803 ms
204,852 KB
testcase_13 AC 1,920 ms
161,328 KB
testcase_14 AC 1,014 ms
112,044 KB
testcase_15 TLE -
testcase_16 AC 1,799 ms
155,440 KB
testcase_17 AC 2,619 ms
185,908 KB
testcase_18 AC 2,186 ms
155,568 KB
testcase_19 AC 1,418 ms
135,348 KB
testcase_20 AC 1,883 ms
143,412 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,095 ms
111,536 KB
testcase_25 AC 1,753 ms
150,964 KB
testcase_26 AC 1,671 ms
140,080 KB
testcase_27 AC 2,637 ms
175,924 KB
testcase_28 AC 2,147 ms
236,332 KB
testcase_29 AC 2,127 ms
236,336 KB
testcase_30 AC 2,159 ms
236,336 KB
testcase_31 AC 2,163 ms
236,336 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-1;++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