Submission #163354

# Submission time Handle Problem Language Result Execution time Memory
163354 2019-11-12T19:29:05 Z beso123 Studentsko (COCI14_studentsko) C++14
30 / 100
4 ms 632 KB
#include<bits/stdc++.h>
#define int long long
using namespace std;
int n,s,a[1001],dp[1001];
pair<int,int> m[1001];
main(){
cin>>n>>s;
for(int k=1;k<=n;k++){
    int b;
    cin>>b;
    m[k]={b,k};
}
sort(m+1,m+n+1);
int t=1;
int h=1;
for(int k=1;k<=n;k++){
    if(t>s){
        t=1;
        h++;
    }
    a[m[k].second]=h;
    t++;
}
dp[1]=1;
int len=1;
for(int k=2;k<=n;k++){
        dp[k]=1;
    for(int i=1;i<k;i++){
        if(a[i]<=a[k])
            dp[k]=max(dp[k],dp[i]+1);
    }
    len=max(len,dp[k]);
}
cout<<n-len;
return 0;
}

Compilation message

studentsko.cpp:6:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 256 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 504 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -