結果
問題 | No.2078 魔抜けなパープル |
ユーザー | やう |
提出日時 | 2022-09-25 21:42:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 561 ms / 2,000 ms |
コード長 | 535 bytes |
コンパイル時間 | 1,551 ms |
コンパイル使用メモリ | 167,572 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-01 23:26:24 |
合計ジャッジ時間 | 5,035 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
5,248 KB |
testcase_01 | AC | 561 ms
5,376 KB |
testcase_02 | AC | 497 ms
5,376 KB |
testcase_03 | AC | 477 ms
5,376 KB |
testcase_04 | AC | 466 ms
5,376 KB |
testcase_05 | AC | 489 ms
5,376 KB |
testcase_06 | AC | 487 ms
5,376 KB |
testcase_07 | AC | 11 ms
5,376 KB |
ソースコード
#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(); }