Submission #734445

#TimeUsernameProblemLanguageResultExecution timeMemory
734445faricaRabbit Carrot (LMIO19_triusis)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define div / #define ll long long #define fore(i, l, r) for(int i=int(l); i<int(r); i++) #define sz(a) int((a).size()) #define mod 1000000007 using namespace std; int main() { int n,m,cnt=0; cin >> n >> m; int h[n]; vector<int>v; for(int i=0; i<n; ++i) { cin >> h[i]; } for(int i=1; i<=n; ++i) { if((i*m)>=h[i-1]) v.push_back(i*m-h[i-1]); } vector<int>dp; for(int i=0; i<v.size(); ++i) { int pos=upper_bound(dp.begin(), dp.end(), v[i])-dp.begin(); if(i==v.size()-1) { if(pos==(int)dp.size()) cout << n-(int)dp.size()+cnt-1 << endl; else cout << n-pos-1+cnt << endl; break; } if(pos==(int)dp.size()) dp.push_back(v[i]); else dp[pos]=v[i]; } if(!v.size()) {ac cout << n << endl; } return 0; }

Compilation message (stderr)

triusis.cpp: In function 'int main()':
triusis.cpp:23:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 |     for(int i=0; i<v.size(); ++i) {
      |                  ~^~~~~~~~~
triusis.cpp:25:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   25 |         if(i==v.size()-1) {
      |            ~^~~~~~~~~~~~
triusis.cpp:33:20: error: 'ac' was not declared in this scope
   33 |     if(!v.size()) {ac
      |                    ^~