結果
問題 | No.335 門松宝くじ |
ユーザー | ciel |
提出日時 | 2016-01-16 16:54:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 507 ms / 2,000 ms |
コード長 | 1,721 bytes |
コンパイル時間 | 1,001 ms |
コンパイル使用メモリ | 61,108 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 20:02:40 |
合計ジャッジ時間 | 4,720 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 119 ms
6,940 KB |
testcase_06 | AC | 177 ms
6,940 KB |
testcase_07 | AC | 336 ms
6,944 KB |
testcase_08 | AC | 302 ms
6,940 KB |
testcase_09 | AC | 504 ms
6,940 KB |
testcase_10 | AC | 505 ms
6,940 KB |
testcase_11 | AC | 506 ms
6,944 KB |
testcase_12 | AC | 507 ms
6,940 KB |
testcase_13 | AC | 503 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:46:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | scanf("%d%d",&N,&M); | ~~~~~^~~~~~~~~~~~~~ main.cpp:51:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 51 | for(int i=0;i<N;i++)scanf("%d",&v[i]),idx[v[i]]=i+1,rmq.update(i+1,v[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <vector> #include <map> #include <cstdio> using namespace std; #define INF 9999999 class RMQ{ int size; vector<int> minval; vector<int> maxval; pair<int,int> _query(int a,int b,int k,int l, int r){ if(r<=a||b<=l)return make_pair(INF,-INF); if(a<=l&&r<=b)return make_pair(minval[k],maxval[k]); else{ pair<int,int> vl=_query(a,b,k*2+1,l,(l+r)/2); pair<int,int> vr=_query(a,b,k*2+2,(l+r)/2,r); return make_pair(min(vl.first,vr.first),max(vl.second,vr.second)); } } public: RMQ(int k){init(k);} void init(int k){ for(size=1;size<k;)size<<=1; //size=1<<(32-__builtin_clz(k)); minval=vector<int>(2*size-1,INF); maxval=vector<int>(2*size-1,-INF); } void update(int k,int t){ k+=size-1; minval[k]=maxval[k]=t; while(k>0){ k=(k-1)/2; minval[k]=min(minval[k*2+1],minval[k*2+2]); maxval[k]=max(maxval[k*2+1],maxval[k*2+2]); } } pair<int,int> query(int a,int b){ return _query(a,b,0,0,size); } }; int main(){ int N,M,R=0,r=0,r1; scanf("%d%d",&N,&M); for(int m=0;m<M;m++){ map<int,int>idx; vector<int>v(N); RMQ rmq(N+1); for(int i=0;i<N;i++)scanf("%d",&v[i]),idx[v[i]]=i+1,rmq.update(i+1,v[i]); r1=0; for(int a=1;a<=N;a++)for(int b=1;b<=N;b++){ int i=idx[a],j=idx[b],k=max(a,b); if(i<j){ pair<int,int> x; int r0=0; if(1!=i){ x=rmq.query(1,i); for(int e:{x.first,x.second})if((e-a)*(a-b)<0)r0=max(max(e,r0),k); } if(i+1!=j){ x=rmq.query(i+1,j); for(int e:{x.first,x.second})if((a-e)*(e-b)<0)r0=max(max(e,r0),k); } if(j+1!=N+1){ x=rmq.query(j+1,N+1); for(int e:{x.first,x.second})if((a-b)*(b-e)<0)r0=max(max(e,r0),k); } r1+=r0; } } if(r<r1)r=r1,R=m; } printf("%d\n",R); }