/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 1.02 MiB
#2 Accepted 2ms 1.02 MiB
#3 Accepted 6ms 1.02 MiB
#4 Accepted 7ms 1.07 MiB
#5 Accepted 8ms 1.066 MiB
#6 Accepted 7ms 1.066 MiB
#7 Accepted 8ms 1.074 MiB
#8 Accepted 14ms 1.02 MiB
#9 Accepted 27ms 1.215 MiB
#10 Accepted 55ms 1.656 MiB
#11 Accepted 794ms 3.898 MiB
#12 Accepted 641ms 3.852 MiB
#13 Accepted 137ms 2.852 MiB
#14 Accepted 207ms 3.469 MiB
#15 Accepted 200ms 3.312 MiB
#16 Accepted 266ms 3.316 MiB
#17 Accepted 183ms 3.262 MiB
#18 Accepted 182ms 3.16 MiB
#19 Accepted 110ms 2.609 MiB

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N = 105;
const ll MOD = 1e9 + 7;

int n;
vector<vector<map<pair<int, int>, int>>> dp(N, vector<map<pair<int, int>, int>>(N));

int max_gcd(int ind, vector<int> &v, int gc, int gc2, int cnt) {
  if(ind == n) {
    if(cnt == (n + 1) / 2) {
      return gc + gc2;
    }
    return 0;
  }

  if (dp[ind][cnt].find({gc, gc2}) != dp[ind][cnt].end()) return dp[ind][cnt][{gc, gc2}];

  int take = max_gcd(ind + 1, v, gcd(gc, v[ind]), gc2, cnt + 1);
  int notTake = max_gcd(ind + 1, v, gc, gcd(gc2, v[ind]), cnt);

  return dp[ind][cnt][{gc, gc2}] = max(take, notTake);
}

void solve()
{
  cin >> n;
  
  vector<int> v(n);
  for(int i = 0; i < n; i++) {
    cin >> v[i];
  }
  
  cout << max_gcd(0, v, 0, 0, 0) << "\n";

  for (int i = 0; i < N; i++) {
    for (int j = 0; j < N; j++) dp[i][j].clear();
  }
}

int main()
{
  ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);

  int t;
  cin >> t;
  while(t--){
    solve();
  }
}

Information

Submit By
Type
Submission
Problem
P1076 Even Odd GCD (Easy Version)
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-18 15:29:47
Judged At
2024-08-18 15:29:47
Judged By
Score
100
Total Time
794ms
Peak Memory
3.898 MiB