Submission #636700

# Submission time Handle Problem Language Result Execution time Memory
636700 2022-08-30T00:04:01 Z Ahmed_Solyman Timovi (COCI18_timovi) C++14
20 / 80
18 ms 2900 KB
#include <bits/stdc++.h>
#include <ext/rope>
 
using namespace std;
using namespace __gnu_cxx;
#pragma GCC optimize("-Ofast")
#pragma GCC optimize("-O1")
//-------------------------------------------------------------//
typedef long long ll;
typedef unsigned long long ull;
#define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define PI acos(-1)
#define lb lower_bound
#define ub upper_bound
#define endl '\n'
#define all(v) v.begin(),v.end()
#define allr(v) v.rbegin(),v.rend()
#define sum_to(n) (n*(n+1))/2
#define pb push_back
#define pf push_front
#define sz size()
const ll mod=1e9+7;
int dx[8]={0,1,0,-1,1,1,-1,-1};
int dy[8]={1,0,-1,0,1,-1,-1,1};
//-------------------------------------------------------------//
ll lcm(ll a,ll b)
{
    return (max(a,b)/__gcd(a,b))*min(a,b);
}
void person_bool(bool x)
{
    cout<<(x?"YES":"NO")<<endl;
}
int main()
{
    //freopen("input.txt","r",stdin);
    //freopen("output.txt","w",stdout);
    fast
    ll n,k,m;cin>>n>>k>>m;
    ll x=m/(k*n);
    vector<ll>ans(n);
    if(x%2==0){
    	for(ll i=0;i<n;i++){
    		ans[i]=k*x;
    	}
    	ll y=m-k*n*x;
    	for(ll i=(ans[0]>0);i<n;i++){
    		if(y){
    			if(y>=k){
    				y-=k;
    				ans[i]+=k;
    			}
    			else{
    				ans[i]+=y;
    				y=0;
    			}
    		}
    	}
    }
    else{
    	ll p=0;
    	for(ll i=0;i<n;i++){
    		ans[i]=k*(x-1);
    		p+=k*(x-1);
    	}
    	for(ll i=(ans[0]>0);i<n;i++){
    		ans[i]+=k;
    		p+=k;
    	}
    	ll y=m-p;
    	for(ll i=n-2;i>=0;i--){
    		if(y){
    			if(y>=k){
    				y-=k;
    				ans[i]+=k;
    			}
    			else{
    				ans[i]+=y;
    				y=0;
    			}
    		}
    	}
    }
    for(auto i:ans){
    	cout<<i<<" ";
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Correct 18 ms 2236 KB Output is correct
4 Correct 15 ms 2260 KB Output is correct
5 Incorrect 0 ms 212 KB Output isn't correct
6 Incorrect 1 ms 212 KB Output isn't correct
7 Incorrect 17 ms 2900 KB Output isn't correct
8 Incorrect 17 ms 2892 KB Output isn't correct