답안 #760148

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
760148 2023-06-17T08:34:48 Z AryanReddy Aliens (IOI16_aliens) C++14
0 / 100
1 ms 300 KB
#undef local
#include <bits/stdc++.h>
#define all(v) v.begin(),v.end()
#define allr(v) v.rbegin(),v.rend()
#define fori(i,n) for(int i=0;i<n;i++)
#define ford(i,n) for(int i = n-1;i >= 0;i--)
#define pb push_back
#define ll long long int
//#define mod 998244353
#define pi pair<int,int>
#define pll pair<ll,ll>
#define mp make_pair
#define fi first
#define se second
#define printVector(v) fori(;,v.size()) {cout << v[i] << " ";} cout << "\n";
#pragma GCC optimize("O3")
std::mt19937 rng((unsigned int) std::chrono::steady_clock::now().time_since_epoch().count());
using namespace std;
ll getAns(vector<ll> a,ll k){
    int n = a.size();
    vector<vector<ll>> dp(n+1,vector<ll> (k+1,1e18));
    dp[0][0] = 0;
    for(int i = 1;i <= n;i++){
        for(int j= k;j >= 1;j--){
            dp[i][j] = dp[i][j-1];
            for(int t = i;t >= 1;t--){
                ll d = a[i-1] - a[t-1]  + 1;
                d *= d;
                dp[i][j] = min(dp[i][j],dp[t-1][j-1] + d);
            }
        }
    }
    return dp[n][k];
}

long long take_photos(int n, int m, int k, vector<int> r, vector<int> c){
    vector<ll> a;
    for(int i = 0;i < n;i++){
        int x = r[i];
        int y = c[i];
        a.push_back(x);
        a.push_back(y);
    }
    sort(all(a));
    a.erase(unique(all(a)),a.end());
    ll ans = getAns(a,k);
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Correct answer: answer = 4
2 Incorrect 1 ms 212 KB Wrong answer: output = 2, expected = 4
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 300 KB Correct answer: answer = 1
2 Correct 1 ms 212 KB Correct answer: answer = 4
3 Incorrect 0 ms 212 KB Wrong answer: output = 1000000000000000000, expected = 1
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Correct answer: answer = 4
2 Incorrect 1 ms 212 KB Wrong answer: output = 2, expected = 4
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Correct answer: answer = 4
2 Incorrect 1 ms 212 KB Wrong answer: output = 2, expected = 4
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Correct answer: answer = 4
2 Incorrect 1 ms 212 KB Wrong answer: output = 2, expected = 4
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Correct answer: answer = 4
2 Incorrect 1 ms 212 KB Wrong answer: output = 2, expected = 4
3 Halted 0 ms 0 KB -