結果
問題 | No.1395 Less Sweet Alchemy |
ユーザー | mtmtmtmtmt |
提出日時 | 2021-02-14 21:52:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 790 ms |
コンパイル使用メモリ | 80,976 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 09:23:38 |
合計ジャッジ時間 | 1,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:38:5: warning: 'mid' may be used uninitialized [-Wmaybe-uninitialized] 38 | if(mid>=1)cout<<"Yes"<<endl; | ^~ main.cpp:24:8: note: 'mid' was declared here 24 | ll mid; | ^~~
ソースコード
#include <iostream> #include <stdio.h> #include <vector> #include <map> #include <utility> #include <list> #include <algorithm> typedef long long ll; const ll INF=20000; using namespace std; int main(){ ll n,x; cin>>n>>x; ll ans=0; vector<ll> C(n); for(int i=0;i<n;i++) { cin>>C[i]; } sort(C.begin(),C.end()); ll right=C[n-1]; ll left=C[0]; ll mid; for(int i=n-1;i>0;i--) { mid=(right+left)/2; if(mid<x) { mid=left; } else if(mid>x) { mid=right; } // cout<<mid<<endl; } if(mid>=1)cout<<"Yes"<<endl; else cout<<"No"<<endl; /* vector<vector<true>> dp(n+1,vector<ll>101,false); dp[0][0]=true; for(int k=0;k<=101;k++) { for(int i=0;i<=n;i++) { for(int j=0;j<=100;j++) { dp[i][j]=dp[i-1][j-C[k]] } } } */ return 0; }