結果
| 問題 |
No.1538 引きこもりさんは引き算が得意。
|
| コンテスト | |
| ユーザー |
hiro71687k
|
| 提出日時 | 2023-03-30 20:13:34 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 839 bytes |
| コンパイル時間 | 3,701 ms |
| コンパイル使用メモリ | 262,580 KB |
| 最終ジャッジ日時 | 2025-02-11 19:15:20 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 35 WA * 7 TLE * 11 MLE * 1 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=9999999999999999;
int main(){
ll n,k;
cin >> n >> k;
vector<ll>a(n);
for (ll i = 0; i < n; i++)
{
cin >> a[i];
}
sort(a.begin(),a.end());
map<ll,ll>memo;
vector<map<ll,ll>>dp(n+1);
for (ll i = 0; i < n; i++)
{
dp[i+1]=dp[i];
dp[i+1][a[i]]=1;
for(auto v:dp[i]){
dp[i+1][v.first-a[i]]=1;
dp[i+1][a[i]-v.first]=1;
}
if (dp[i+1][k]>=1)
{
cout << "Yes" << endl;
return 0;
}
}
if (dp[n][k]>=1)
{
cout << "Yes" << endl;
}else{
cout << "No" << endl;
}
}
hiro71687k