結果
問題 | No.910 素数部分列 |
ユーザー | moririn2528_c |
提出日時 | 2019-10-18 21:40:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 1,000 ms |
コード長 | 1,287 bytes |
コンパイル時間 | 1,068 ms |
コンパイル使用メモリ | 93,228 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 21:21:35 |
合計ジャッジ時間 | 2,432 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 50 |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<vector> #include<cmath> #include<algorithm> #include<map> #include<queue> #include<deque> #include<iomanip> #include<tuple> using namespace std; typedef long long int LL; typedef pair<int,int> P; typedef pair<LL,int> LP; const int INF=1<<30; const LL MAX=1e9+7; void array_show(int *array,int array_n,char middle=' '){ for(int i=0;i<array_n;i++)printf("%d%c",array[i],(i!=array_n-1?middle:'\n')); } void array_show(LL *array,int array_n,char middle=' '){ for(int i=0;i<array_n;i++)printf("%lld%c",array[i],(i!=array_n-1?middle:'\n')); } void array_show(vector<int> &vec_s,char middle=' '){ for(int i=0;i<vec_s.size();i++)printf("%d%c",vec_s[i],(i!=vec_s.size()-1?middle:'\n')); } void array_show(vector<LL> &vec_s,char middle=' '){ for(int i=0;i<vec_s.size();i++)printf("%lld%c",vec_s[i],(i!=vec_s.size()-1?middle:'\n')); } string sa; int main(){ int n,m; int i,j,k; int a,b,c; cin>>n; cin>>sa; a=0,b=0; int s=0; for(i=0;i<sa.size();i++){ if(sa[i]=='3' ||sa[i]=='5' ||sa[i]=='7')s++; else if(sa[i]=='1')a++; else if(a>0)a--,s++; else b++; } if(b>2*a)s+=a,a=0; else s+=b/2,a-=b/2; s+=a/2; cout<<s<<endl; }