답안 #644493

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
644493 2022-09-24T18:02:19 Z GusterGoose27 Strongbox (POI11_sej) C++11
63 / 100
184 ms 37636 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

const ll MAXN = 1e14;
const int MAXK = 25e4;
const int MAXF = 1e5;

ll n;
int k;
ll elems[MAXK];

ll gcd(ll a, ll b) {
	if (a > b) return gcd(b, a);
	if (a == 0) return b;
	return gcd(b%a, a);
}

vector<ll> primes;
bitset<(int) sqrt(MAXN)+1> is_prime;
vector<pii> kfactored;
vector<int> factorizations[MAXK-1];
int state[MAXF]; // 0 unvisited, 2 descended from k, 1 blocked
ll val[MAXF];
int hshs[MAXK];
vector<int> coeffs;
int mxh = 0;
ll ans = 0;

void make_primes(ll mx) {
	is_prime.set();
	for (int i = 2; i <= mx; i++) {
		if (!is_prime[i]) continue;
		primes.push_back(i);
		for (int j = 2*i; j <= mx; j+= i) is_prime[j] = 0;
	}
}

void factorize(ll target) { // prime
	for (int i = 0; i < primes.size() && target > 1; i++) {
		int c = 0;
		while (target % primes[i] == 0) {
			target /= primes[i];
			c++;
		}
		if (c) {
			kfactored.push_back(pii(primes[i], c));
		}
	}
	if (target != 1) {
		kfactored.push_back(pii(target, 1));
	}
}

void factorize(ll target, vector<int> &factored) { // prime
	for (int i = 0; i < kfactored.size(); i++) {
		int c = 0;
		while (target % kfactored[i].first == 0) {
			target /= kfactored[i].first;
			c++;
		}
		factored.push_back(c);
	}
}

void make_coeffs() {
	int mult = 1;
	for (int i = 0; i < kfactored.size(); i++) {
		coeffs.push_back(mult);
		mult *= (kfactored[i].second+1);
	}
}

int hsh(vector<int> &factored) {
	int r = 0;
	for (int i = 0; i < factored.size(); i++) {
		r += factored[i]*coeffs[i];
	}
	mxh = max(mxh, r);
	return r;
}

int main() {
	ios_base::sync_with_stdio(false); cin.tie(NULL);
	cin >> n >> k;
	for (int i = 0; i < k; i++) {
		cin >> elems[i];
	}
	elems[k-1] = gcd(elems[k-1], n);
	for (int i = 0; i < k-1; i++) elems[i] = gcd(elems[i], elems[k-1]);
	for (int i = 0; i < k; i++) {
		if (elems[i] == 0) elems[i] = n;
	}
	make_primes((int) sqrt(n));
	factorize(elems[k-1]);
	make_coeffs();
	hshs[k-1] = coeffs.back()*(kfactored.back().second+1)-1;
	mxh = max(mxh, hshs[k-1]);
	state[hshs[k-1]] = 2;
	val[hshs[k-1]] = elems[k-1];
	for (int i = 0; i < k-1; i++) {
		factorize(elems[i], factorizations[i]);
		hshs[i] = hsh(factorizations[i]);
		state[hshs[i]] = 1;
		val[hshs[i]] = elems[i];
	}
	for (int i = mxh; i >= 0; i--) {
		if (state[i] == 0) continue;
		if (state[i] == 2) ans = max(ans, n/val[i]);
		for (int p = 0; p < kfactored.size(); p++) {
			int v = i/coeffs[p];
			if (v % (kfactored[p].second+1) == 0) continue;
			int nxt = i-coeffs[p];
			if (state[nxt] == 1 || (state[nxt] == 2 && state[i] == 2)) continue;
			val[nxt] = val[i]/kfactored[p].first;
			state[nxt] = state[i];
		}
	}
	assert(ans > 0);
	cout << ans << "\n";
}

Compilation message

sej.cpp: In function 'void factorize(ll)':
sej.cpp:43:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |  for (int i = 0; i < primes.size() && target > 1; i++) {
      |                  ~~^~~~~~~~~~~~~~~
sej.cpp: In function 'void factorize(ll, std::vector<int>&)':
sej.cpp:59:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   59 |  for (int i = 0; i < kfactored.size(); i++) {
      |                  ~~^~~~~~~~~~~~~~~~~~
sej.cpp: In function 'void make_coeffs()':
sej.cpp:71:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   71 |  for (int i = 0; i < kfactored.size(); i++) {
      |                  ~~^~~~~~~~~~~~~~~~~~
sej.cpp: In function 'int hsh(std::vector<int>&)':
sej.cpp:79:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   79 |  for (int i = 0; i < factored.size(); i++) {
      |                  ~~^~~~~~~~~~~~~~~~~
sej.cpp: In function 'int main()':
sej.cpp:113:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  113 |   for (int p = 0; p < kfactored.size(); p++) {
      |                   ~~^~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 7380 KB Output is correct
2 Correct 4 ms 7380 KB Output is correct
3 Runtime error 11 ms 14900 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 7380 KB Output is correct
2 Correct 4 ms 7380 KB Output is correct
3 Correct 4 ms 7380 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 7380 KB Output is correct
2 Correct 3 ms 7380 KB Output is correct
3 Correct 4 ms 7380 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 7576 KB Output is correct
2 Correct 5 ms 7636 KB Output is correct
3 Correct 5 ms 7508 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 9 ms 8532 KB Output is correct
2 Correct 9 ms 8508 KB Output is correct
3 Correct 11 ms 8572 KB Output is correct
4 Correct 10 ms 8532 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 36 ms 11656 KB Output is correct
2 Correct 46 ms 11640 KB Output is correct
3 Runtime error 68 ms 25612 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 17 ms 9540 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 52 ms 11620 KB Output is correct
2 Correct 58 ms 15680 KB Output is correct
3 Correct 57 ms 15732 KB Output is correct
4 Correct 50 ms 11752 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 48 ms 15688 KB Output is correct
2 Correct 56 ms 15764 KB Output is correct
3 Correct 63 ms 15748 KB Output is correct
4 Correct 58 ms 15744 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 42 ms 11660 KB Output is correct
2 Correct 67 ms 15896 KB Output is correct
3 Correct 68 ms 15668 KB Output is correct
4 Correct 59 ms 15712 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 81 ms 16512 KB Output is correct
2 Correct 103 ms 18376 KB Output is correct
3 Correct 104 ms 21684 KB Output is correct
4 Correct 129 ms 26144 KB Output is correct
5 Correct 104 ms 22876 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 140 ms 19008 KB Output is correct
2 Correct 159 ms 24236 KB Output is correct
3 Correct 129 ms 28868 KB Output is correct
4 Correct 119 ms 27540 KB Output is correct
5 Correct 155 ms 32432 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 104 ms 20288 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 148 ms 22984 KB Output is correct
2 Correct 184 ms 27188 KB Output is correct
3 Runtime error 165 ms 37636 KB Memory limit exceeded
4 Halted 0 ms 0 KB -