結果

問題 No.2207 pCr検査
ユーザー 👑 testestesttestestest
提出日時 2022-07-12 14:25:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,365 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 202,540 KB
実行使用メモリ 81,472 KB
最終ジャッジ日時 2024-07-02 18:38:13
合計ジャッジ時間 24,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
42,340 KB
testcase_01 AC 12 ms
42,240 KB
testcase_02 AC 601 ms
80,240 KB
testcase_03 AC 389 ms
63,540 KB
testcase_04 AC 430 ms
70,680 KB
testcase_05 AC 819 ms
78,080 KB
testcase_06 AC 295 ms
76,500 KB
testcase_07 AC 263 ms
63,288 KB
testcase_08 AC 199 ms
53,912 KB
testcase_09 AC 605 ms
70,144 KB
testcase_10 AC 89 ms
63,360 KB
testcase_11 AC 529 ms
69,424 KB
testcase_12 AC 864 ms
74,080 KB
testcase_13 AC 465 ms
60,996 KB
testcase_14 AC 129 ms
46,908 KB
testcase_15 AC 936 ms
79,772 KB
testcase_16 AC 458 ms
58,988 KB
testcase_17 AC 751 ms
71,680 KB
testcase_18 AC 521 ms
65,700 KB
testcase_19 AC 282 ms
53,632 KB
testcase_20 AC 405 ms
60,544 KB
testcase_21 AC 1,140 ms
80,376 KB
testcase_22 AC 1,354 ms
81,284 KB
testcase_23 AC 1,365 ms
81,304 KB
testcase_24 AC 129 ms
48,768 KB
testcase_25 AC 405 ms
58,496 KB
testcase_26 AC 340 ms
57,472 KB
testcase_27 AC 754 ms
72,192 KB
testcase_28 AC 1,120 ms
81,392 KB
testcase_29 AC 1,101 ms
81,368 KB
testcase_30 AC 1,131 ms
81,472 KB
testcase_31 AC 1,121 ms
81,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:20:25: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized]
   20 |         for(int r=1;r<=p/2;r++){
      |                        ~^~
main.cpp:8:13: note: 'p' was declared here
    8 |         int p;
      |             ^

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

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

	vector<int>mpf(p+1);
	for(int i=2;i<=p;i++)if(!mpf[i])for(int j=i;j<=p;j+=i)mpf[j]=i;

	int diff=k;
	for(int r=1;r<=p/2;r++){
		for(int temp=p-r+1;temp!=1;temp/=mpf[temp]){
			if(!e[mpf[temp]])diff++;
			e[mpf[temp]]--;
			if(!e[mpf[temp]])diff--;
		}
		for(int temp=r;temp!=1;temp/=mpf[temp]){
			if(!e[mpf[temp]])diff++;
			e[mpf[temp]]++;
			if(!e[mpf[temp]])diff--;
		}
		if(!diff){
			cout << p << ' ' << r << endl;
			return 0;
		}
	}
	cout << "-1 -1" << endl;
}
0