Submission #978124

#TimeUsernameProblemLanguageResultExecution timeMemory
978124IsamGlobal Warming (CEOI18_glo)C++17
10 / 100
2063 ms2728 KiB
#include<bits/stdc++.h> using namespace std; #define eb emplace_back #define intt long long #define all(x) begin(x),end(x) constexpr int sz = 2e5 + 5; constexpr intt inf = 1E18 + 7; int n, x, t[sz]; signed main(){ ios_base::sync_with_stdio(0), cin.tie(0); cin >> n >> x; for(register int i = 1; i <= n; ++i){ cin >> t[i]; } vector<intt> dp(n+1, inf); dp[0] = -inf; for(register int i = 1; i <= n; ++i){ int l = upper_bound(all(dp), t[i]) - dp.begin(); if(dp[l] > t[i] && dp[l-1] < t[i]) dp[l] = t[i]; } int ans(1); for(register int i = 1; i <= n; ++i) if(dp[i] ^ inf) ans = i; if(x == 0) return cout << ans << '\n', 0; for(register int i = n; i >= 1; --i){ t[i] += x; dp.assign(n + 1, inf); dp[0] = -inf; for(register int j = 1; j <= n; ++j){ int l = upper_bound(all(dp), t[j]) - dp.begin(); if(dp[l] > t[j] && dp[l-1] < t[j]) dp[l] = t[j]; } for(register int j = max(i - 1, ans + 1); j <= n; ++j) if(dp[i] ^ inf) ans = max(ans, i); } cout << ans << '\n'; }

Compilation message (stderr)

glo.cpp: In function 'int main()':
glo.cpp:19:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   19 |  for(register int i = 1; i <= n; ++i){
      |                   ^
glo.cpp:27:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   27 |  for(register int i = 1; i <= n; ++i){
      |                   ^
glo.cpp:37:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   37 |  for(register int i = 1; i <= n; ++i) if(dp[i] ^ inf) ans = i;
      |                   ^
glo.cpp:42:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   42 |  for(register int i = n; i >= 1; --i){
      |                   ^
glo.cpp:52:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   52 |   for(register int j = 1; j <= n; ++j){
      |                    ^
glo.cpp:61:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   61 |   for(register int j = max(i - 1, ans + 1); j <= n; ++j) if(dp[i] ^ inf) ans = max(ans, 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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...