Submission #1035241

#TimeUsernameProblemLanguageResultExecution timeMemory
10352417againStove (JOI18_stove)C++17
100 / 100
34 ms3284 KiB
#include <bits/stdc++.h> #define int long long #define double long double #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() #define FAST ios::sync_with_stdio(0);cout.tie(0);cin.tie(0) #define endl "\n" #define f first #define s second #define pb push_back #define in insert //#define ind(v,t) distance(v.begin(),t) using namespace std ; int MOD = 1e9+7 ; const int N = 3e6+1 ; //int fib(int n){double phi=(1+sqrt(5))/2;return round((pow(phi,n)-pow(1-phi,n))/sqrt(5));} //void setIO(string s){freopen((s+".in").c_str(),"r",stdin);freopen((s+".out").c_str(),"w",stdout);} int fstpow(int a, int b){if(b==0)return 1;int ans=fstpow(a,b/2)%MOD;ans=ans%MOD*ans%MOD;if(b&1)return a*ans%MOD;return ans%MOD;} int inv(int x){return fstpow(x,MOD-2);} int DMOD(int x,int y){x%=MOD;y%=MOD;return fstpow(x,inv(y));} int MMOD(int x,int y){x%=MOD;y%=MOD;return (x*y)%MOD;} //int AMOD(int x,int y){x%=MOD;y%=MOD;return (x+y)%MOD;} int SMOD(int x,int y){x%=MOD;y%=MOD;return (x-y+MOD)%MOD;} //int Factorial[N];void FAC(){Factorial[0]=1;for(int i=1;i<=2e6;i++)Factorial[i]=(Factorial[i-1]%MOD*i%MOD)%MOD;} //int PREFIX[3e6];void PFX(){PREFIX[0]=0;for(int i=1;i<=2e6;i++)PREFIX[i]=PREFIX[i]+PREFIX[i-1]+i;} //fill_n(&a[0][0],(n+1)*(m+1),valu); //int C(int x,int y){int A=1,B=1;for(int i=y+1;i<=x;i++)A*=i;for(int i=2;i<=x-y;i++)B*=i;return A/B;} int n , k ; vector <int> a ; void slv() { cin >> n >> k ; a.resize(n) ; for(int i = 0 ; i < n ; i++) cin >> a[i] ; vector <int> b ; for(int i = 1 ; i < n ; i++) b.pb(a[i] - a[i - 1] - 1) ; sort(rall(b)) ; int ans = 0 ; for(int i = 0 ; i < k - 1 ; i++) ans += b[i] ; cout << (a[n - 1] - a[0] + 1) - ans ; } main() { //FAST ; int t = 1 ; //cin >> t ; while(t--) slv() ; } //TLE Problem ? /* -> const MOD -> const int -> FAST -> "/n" | endl -> array size */ //MLE Problem ? /* -> array size() -> N ? -> long long -> define -> long long dp[1000][100000] ? ; */ //RTE problem ? /* -> array size ? -> x / 0 ? */

Compilation message (stderr)

stove.cpp:56:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   56 | main()
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...