/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 1.277 MiB
#2 Accepted 2ms 1.32 MiB
#3 Wrong Answer 3ms 1.324 MiB
#4 Wrong Answer 17ms 1.602 MiB

Code

#include<bits/stdc++.h>
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout << it << " "; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;

const int N = 2e5 + 3, inf = 1e9;
vector<int> dp(N, inf);

void solve() {
    int x;
    cin >> x;
    if(dp[x] < inf) cout << dp[x] << endl;
    else cout << -1 << endl;
    return;
}

int32_t main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int sq = 1;
    vector<int> psq;
    while(sq * sq < N) psq.pb(sq * sq), dp[sq * sq] = 1, sq++;
    // cout << psq.size() << " = "; coutall(psq);
    for(int i = 0; i + 1 < psq.size(); i++) {
        int x = psq[i];
        while(++x < psq[i + 1]) {
            if(x - psq[i] < psq[i]) dp[x] = min(dp[x], 1 + dp[x - psq[i]]);
            if(dp[x] > inf) dp[x] = inf;
        }
    }
    // coutall(dp);

    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1051 Square Sum
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-29 17:44:39
Judged At
2024-11-29 17:44:39
Judged By
Score
10
Total Time
17ms
Peak Memory
1.602 MiB