Advertisement
Kali_prasad

Max subarray sum(using carryforward)

Apr 8th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.59 KB | None | 0 0
  1. #pragma GCC optimize ("O3")
  2. #pragma GCC target ("sse4")
  3.  
  4. #include <bits/stdc++.h>
  5. using namespace std;
  6.  
  7. typedef long long ll;
  8. typedef pair<int, int> pii;
  9. typedef pair<string,int> psi;
  10. typedef map<int,int> mii;
  11. typedef map<long long,long long> mll;
  12. typedef map<string,int> msi;
  13. typedef map<char,int> mci;
  14. typedef set<int> si;
  15. typedef set<long long> sll;
  16. typedef set<string> ss;
  17. typedef set<char> sc;
  18. typedef vector<int> vi;
  19. typedef vector<string> vs;
  20. typedef vector<char> vc;
  21. typedef vector<ll> vll;
  22. typedef vector<vector<int>> vvi;
  23. typedef vector<vector<string>> vvs;
  24. typedef vector<vector<ll>> vvll;
  25.  
  26. #define FOR(i, a, b) for (auto i=a; i<=(b); i++)
  27. #define FORd(i,b,a) for (int i =b; i >= a; i--)
  28. #define sz(x) (int)(x).size()
  29. #define mp make_pair
  30. #define pb push_back
  31. #define f first
  32. #define s second
  33. #define ins insert
  34.  
  35. const int MOD = 1000000007;
  36. //type functions here
  37.  
  38.  
  39.  
  40. int main() {
  41.  
  42.     int tc=1;
  43.     cin>>tc;
  44.     FOR(w,1,tc)
  45.     {
  46.         int size;
  47.         cin>>size;
  48.         vi v;
  49.         FOR(s,1,size)
  50.         {
  51.             int temp;
  52.             cin>>temp;
  53.             v.pb(temp);
  54.            
  55.         }
  56.         int m=INT_MIN,sum=0,x=0,z=0;
  57.         FOR(t,0,size-1)
  58.         {
  59.             sum=0;
  60.             FOR(u,t,size-1)
  61.             {
  62.                 sum+=v[u];
  63.                 if(m<sum)
  64.                 {
  65.                    x=t;
  66.                     z=u;
  67.                 }
  68.                 m=max(m,sum);
  69.              
  70.             }
  71.         }
  72.         cout<<m<<" "<<x<<" "<<z;
  73.        
  74.         cout<<endl;
  75.     }
  76.     return 0;
  77. }
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement