Advertisement
Araf_12

tmp_01

Sep 16th, 2024
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.30 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define endl '\n'
  4. #define ll long long
  5. #define N 200009
  6. #define all(x) (x).begin(), (x).end()
  7. #define LL_INF (1LL << 62)
  8. #define INF (1 << 30)
  9. #define SetBit(x, k) (x |= (1LL << k))
  10. #define ClearBit(x, k) (x &= ~(1LL << k))
  11. #define CheckBit(x, k) ((x >> k) & 1)
  12. #define mod 1000000007
  13.  
  14. // // // Coding starts from here...
  15. int n,m;
  16. vector<char>v={'n','a','r','e','k'};
  17. string s[1003];
  18. ll solve(int ind, int pos, int val){
  19.   if(ind>n)return 0;
  20.  
  21.   int points=0,fl=0,cur=val,curPos=pos;
  22.   for(int i=0;i<m;i++){
  23.     if(s[ind][i]==v[curPos]){
  24.       fl=1;
  25.  
  26.       int cnt=0;
  27.       while(i<m && s[ind][i]=='k')cnt++,i++;
  28.       if(cnt>0){
  29.         cur+=cnt-1;
  30.         points+=5-cur;
  31.         cur=0;
  32.       }
  33.      
  34.       curPos++;
  35.       curPos%=5;
  36.  
  37.     }
  38.     else if(fl)cur++;
  39.   }
  40.   if(!fl)return 0;
  41.  
  42.   ll res=0;
  43.   res=max(res,points+solve(ind+1,curPos,cur));
  44.   res=max(res,solve(ind+1,pos,val));
  45.   cout<<ind<<" "<<pos<<" "<<val<<" "<<res<<endl;
  46.  
  47.   return res;
  48. }
  49.  
  50.  
  51. int main(void)
  52. {
  53.   ios::sync_with_stdio(false);
  54.   cin.tie(0);
  55.   int t;cin>>t;
  56.   while(t--){
  57.     cin>>n>>m;
  58.     for(int i=1;i<=n;i++){
  59.       cin>>s[i];
  60.     }
  61.  
  62.  
  63.     cout<<solve(1,0,0)<<endl;
  64.     for(int i=1;i<=n;i++)s[i].clear();
  65.    
  66.  
  67.   }
  68.  
  69.   return 0;
  70. }
  71.  
  72.  
  73.  
  74.  
  75.  
Tags: cpp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement