Advertisement
erfanul007

Untitled

Jan 11th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long int ll;
  5. typedef unsigned long long int ull;
  6. typedef vector<int> vi;
  7. typedef vector<vi> vvi;
  8. typedef pair<ll,ll> pll;
  9. typedef vector< pll > vpll;
  10. typedef set<int> sti;
  11.  
  12. #define pb push_back
  13. #define pob pop_back
  14. #define mp make_pair
  15. #define ff first
  16. #define ss second
  17. #define loop1(i,n) for(int i=1; i<=int(n); i++)
  18. #define loop(i,y) for(int i=0; i<int(y); i++)
  19. #define rloop(i,y) for(int i=int(y)-1; i>=0; i--)
  20. #define read() freopen("input.txt", "r", stdin)
  21. #define write() freopen("output.txt", "w", stdout)
  22. #define cspf(i) printf("Case %d: ", i)
  23. /// Constants
  24. #define eps 1e-9
  25. #define PI acos(-1.0) // 3.1415926535897932
  26. ll a[100009];
  27. int main()
  28. {
  29. ll n,m,x,f,e;
  30. cin>>n>>m;
  31. a[0]=0;
  32. loop1(i,n){
  33. cin>>x;
  34. a[i]=a[i-1]+x;
  35. }
  36. if(n==1){
  37. cout<<m;
  38. return 0;
  39. }
  40. loop1(i,n){
  41. f=a[i-1];
  42. e=a[n]-a[i];
  43. if(f>-m && e>-m)
  44. cout<<f+e+m;
  45. else if(f>e)
  46. cout<<f;
  47. else
  48. cout<<e;
  49. if(i!=n)
  50. cout<<" ";
  51. }
  52. cout<<endl;
  53. return 0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement