Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<bits/stdc++.h>
- using namespace std;
- typedef long long int ll;
- typedef unsigned long long int ull;
- typedef vector<int> vi;
- typedef vector<vi> vvi;
- typedef pair<ll,ll> pll;
- typedef vector< pll > vpll;
- typedef set<int> sti;
- #define pb push_back
- #define pob pop_back
- #define mp make_pair
- #define ff first
- #define ss second
- #define loop1(i,n) for(int i=1; i<=int(n); i++)
- #define loop(i,y) for(int i=0; i<int(y); i++)
- #define rloop(i,y) for(int i=int(y)-1; i>=0; i--)
- #define read() freopen("input.txt", "r", stdin)
- #define write() freopen("output.txt", "w", stdout)
- #define cspf(i) printf("Case %d: ", i)
- /// Constants
- #define eps 1e-9
- #define PI acos(-1.0) // 3.1415926535897932
- ll a[100009];
- int main()
- {
- ll n,m,x,f,e;
- cin>>n>>m;
- a[0]=0;
- loop1(i,n){
- cin>>x;
- a[i]=a[i-1]+x;
- }
- if(n==1){
- cout<<m;
- return 0;
- }
- loop1(i,n){
- f=a[i-1];
- e=a[n]-a[i];
- if(f>-m && e>-m)
- cout<<f+e+m;
- else if(f>e)
- cout<<f;
- else
- cout<<e;
- if(i!=n)
- cout<<" ";
- }
- cout<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement