제출 #39386

#제출 시각아이디문제언어결과실행 시간메모리
39386ExtazyMoney (IZhO17_money)C++14
45 / 100
1500 ms86488 KiB
#include <bits/stdc++.h> #define endl '\n' #define prev kjlahjkghakj #define left iljhghakjja #define right lkhljahjkajhahja using namespace std; const int N = 1000007; int n,a[N]; bool used[N]; int state[N]; int left[N],right[N]; multiset < int >::iterator prev(multiset < int >::iterator it) { --it; return it; } bool are_consecutive(multiset < int > &s, int v1, int v2) { if(v1==v2) return true; return *prev(s.lower_bound(v2))==v1; } int recurse(int pos) { if(pos<1) return 0; if(used[pos]) return state[pos]; used[pos]=true; int i,ans=recurse(pos-1)+1; multiset < int > s; int leftmost=pos,rightmost=pos; for(i=1;i<=pos;i++) s.insert(a[i]); for(i=pos-1;i>=1;i--) { if(!are_consecutive(s,a[i],a[i+1])) break; if(a[i]<a[i+1]) { if(a[i+1]!=a[pos]) { leftmost=min(leftmost,left[a[i+1]]); rightmost=max(rightmost,right[a[i+1]]); } } if(leftmost<i) break;//continue; ans=min(ans,1+recurse(i-1)); } return state[pos]=ans; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int i; scanf("%d", &n); for(i=1;i<=n;i++) { scanf("%d", &a[i]); right[a[i]]=i; } for(i=n;i>=1;i--) { left[a[i]]=i; } printf("%d\n", recurse(n)); return 0; }

컴파일 시 표준 에러 (stderr) 메시지

money.cpp: In function 'int main()':
money.cpp:57:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
money.cpp:59:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &a[i]);
                           ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...