結果
問題 | No.10 +か×か |
ユーザー | fiord |
提出日時 | 2015-12-09 22:51:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 1,749 ms |
コンパイル使用メモリ | 174,516 KB |
実行使用メモリ | 454,656 KB |
最終ジャッジ日時 | 2024-09-15 06:01:04 |
合計ジャッジ時間 | 7,085 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; map<int,string> dp[50]; bool comp(string a,string b){ while(a.size()>0&&b.size()>0){ if(a[0]==b[0]){ a.erase(a.begin(),a.begin()+1); b.erase(b.begin(),b.begin()+1); } else if(a[0]=='*') return true; else if(b[0]=='*') return false; } return false; } int main(){ int n,t; cin>>n>>t; vector<int> a(n); for(int i=0;i<n;i++) cin>>a[i]; dp[0][a[0]]='\0'; for(int i=1;i<n;i++){ for(auto it=dp[i-1].begin();it!=dp[i-1].end();it++){ int num=it->first; string s=it->second; if(num+a[i]<=t){ auto nxt=dp[i].find(num+a[i]); if(nxt==dp[i].end()) dp[i][num+a[i]]=s+"+"; else if(comp(nxt->second,s+'+')) dp[i][num+a[i]]=s+'+'; } if(num*a[i]<=t){ auto nxt=dp[i].find(num*a[i]); if(nxt==dp[i].end()) dp[i][num*a[i]]=s+'*'; else if(comp(nxt->second,s+'*')) dp[i][num*a[i]]=s+'*'; } } } cout<<dp[n-1][t]<<endl; return 0; }