Submission #81631

#TimeUsernameProblemLanguageResultExecution timeMemory
81631xiaowuc1Studentsko (COCI14_studentsko)C++14
100 / 100
64 ms1348 KiB
#include <bits/stdc++.h> /* unsigned seed1 = std::chrono::system_clock::now().time_since_epoch().count(); mt19937 g1.seed(seed1); ios_base::sync_with_stdio(false); cin.tie(NULL); */ using namespace std; const double PI = 2 * acos(0); typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<int, ll> pill; typedef pair<ll, ll> pll; typedef long double ld; typedef vector<vector<ll>> matrix; int n, k; int l[5005]; int actual[5005]; int sorted[5005]; int dp[5005]; int getidx(int v) { return lower_bound(sorted, sorted+n, v) - sorted; } int main() { scanf("%d%d", &n, &k); for(int i = 0; i < n; i++) { scanf("%d", &l[i]); sorted[i] = l[i]; } sort(sorted, sorted+n); for(int i = 0; i < n; i++) { actual[i] = getidx(l[i]) / k; } int ret = 0; for(int i = 0; i < n; i++) { dp[i] = 1; for(int j = 0; j < i; j++) { if(actual[i] >= actual[j]) { dp[i] = max(dp[i], dp[j] + 1); } } ret = max(dp[i], ret); } printf("%d\n", n - ret); }

Compilation message (stderr)

studentsko.cpp: In function 'int main()':
studentsko.cpp:32:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &n, &k);
   ~~~~~^~~~~~~~~~~~~~~~
studentsko.cpp:34:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &l[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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...