Submission #37176

#TimeUsernameProblemLanguageResultExecution timeMemory
37176Ulugbek_AbdimanabovMoney (IZhO17_money)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> typedef long long ll; typedef long double ld; #define vi vector<ll> #define pii pair<int,int> #define pll pair<ll,ll> #define rep(i,a,n) for(ll i=a; i<n; i++) #define per(i,a,n) for(ll i=n-1; i>=a; i--) #define F first #define S second #define maxx(a,b) a=max(a,b) #define minn(a,b) a=min(a,b) #define db(x) cerr << #x << " = " << x << endl #define N 1111111 using namespace std; int a[N]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // freopen("money.in","r",stdin); //freopen("money.out","w",stdout); int n; cin>>n; rep(i,0,n)scanf("%d",&a[i]); set<int> s; int ans=0; s.insert(1e6+1); for(int i=0; i<n;) { int limit=*s.upper_bound(a[i]); int last=a[i]; while(i<n&&a[i]>=last&&a[i]<=limit)las=a[i],s.insert(a[i]),i++; ans++; } cout<<ans; return 0; }

Compilation message (stderr)

money.cpp: In function 'int main()':
money.cpp:37:56: error: 'las' was not declared in this scope
                     while(i<n&&a[i]>=last&&a[i]<=limit)las=a[i],s.insert(a[i]),i++;
                                                        ^
money.cpp:28:44: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
                 rep(i,0,n)scanf("%d",&a[i]);
                                            ^