結果
問題 | No.2078 魔抜けなパープル |
ユーザー | やう |
提出日時 | 2022-09-25 21:42:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 632 ms / 2,000 ms |
コード長 | 535 bytes |
コンパイル時間 | 1,614 ms |
コンパイル使用メモリ | 168,936 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-22 14:31:22 |
合計ジャッジ時間 | 5,643 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ld=long double; using P=pair<ll,ll>; using V=vector<ll>; #define rep(i,n) for(ll i=0;i<n;i++) #define REP(i,n) for(ll i=1;i<=n;i++) void solve(){ ll x,a,n=101010,inf=1e18; cin >> x >> a; V dp(n,inf); dp[0]=0; rep(j,n) if(j*j+x<dp[j]){ ll i=0; while(i+j<n){ dp[i+j]=min(dp[i+j],dp[i]+j*j+x); i++; } } cout << dp[a] << endl; } int main(){ int t; cin >> t; rep(i,t) solve(); }