結果

問題 No.2221 Set X
ユーザー 沙耶花沙耶花
提出日時 2023-02-17 22:48:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 4,520 ms
コンパイル使用メモリ 268,372 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-07-19 13:59:52
合計ジャッジ時間 7,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 26 ms
6,912 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 30 ms
7,296 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 18 ms
5,760 KB
testcase_21 AC 62 ms
9,040 KB
testcase_22 AC 82 ms
10,752 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 54 ms
8,832 KB
testcase_25 AC 33 ms
6,784 KB
testcase_26 AC 69 ms
13,696 KB
testcase_27 AC 83 ms
13,688 KB
testcase_28 AC 82 ms
13,748 KB
testcase_29 AC 84 ms
13,672 KB
testcase_30 AC 78 ms
13,200 KB
testcase_31 AC 81 ms
13,688 KB
testcase_32 AC 86 ms
13,696 KB
testcase_33 AC 109 ms
13,952 KB
testcase_34 AC 105 ms
14,080 KB
testcase_35 AC 98 ms
13,824 KB
testcase_36 AC 84 ms
13,784 KB
testcase_37 AC 83 ms
13,572 KB
testcase_38 AC 82 ms
13,568 KB
testcase_39 AC 70 ms
12,800 KB
testcase_40 AC 77 ms
12,672 KB
testcase_41 AC 82 ms
13,208 KB
testcase_42 AC 80 ms
13,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){
	
	
	int n;
	cin>>n;
	vector<int> a(n);
	rep(i,n)cin>>a[i];
	
	set<int> S;
	rep(i,n+1){
		S.insert(i);
	}
	vector<vector<int>> del(n*2);
	rep(i,n-1){
		int d = a[i+1] - a[i] + 1;
		if(d >= n*2)continue;
		del[d].push_back(i+1);
	}
	
	long long ans = n*2;
	int X = 1;
	for(int i=1;i<n*2;i++){
		
		rep(j,del[i].size())S.erase(del[i][j]);
		if((long long)(i+1) * (S.size()-1) > ans)continue;
		auto it = S.begin();
		long long sum = S.size()-1;
		while(true){
			if((*it)==n)break;
			sum -= a[(*it)] / i;
			it++;
			sum += a[(*it)-1] / i;
		}
		if(ans > sum * (i+1)){
			ans = sum * (i+1);
			X = i;
		}
	}
	cout<<X<<endl;
	cout<<ans<<endl;
	
	return 0;
}
0