Spread the word.

Share the link on social media.

Share
  • Facebook
Have an account? Sign In Now

Sign Up

Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Home/ Questions/Q 10306
Next
In Process

SIKSHAPATH Latest Questions

Ananya
  • 2
  • 2
Ananya
Asked: January 5, 20222022-01-05T20:06:28+05:30 2022-01-05T20:06:28+05:30In: Programming Language

The Rumbling is a hypothetical cataclysmic event involving Karl Fritz’s Wall Titans marching across the Earth, destroying all life upon …

  • 2
  • 2

The Rumbling is a hypothetical cataclysmic event involving Karl Fritz’s Wall Titans marching across the Earth, destroying all life upon it. Eren Yeager who possesses the Founding Titan has decided to begin The Rumbling to show the true power of the Eldians to the rest of the world.

  • There are NN Titans standing in a line from west to east. Each of the Titans is facing one of the four directions i.e., North, South, East, or West, represented by uppercase English letters ‘N’, ‘S’, ‘E’, and ‘W’ respectively.

  • A Titan can rotate on the spot where it is standing. It requires XX units of energy to rotate 9090 degrees clockwise, and YY units of energy to rotate 9090 degrees anti-clockwise.

  • For the activation of The Rumbling, all the Titans must face Eren Yeager.

So, Eren wants to position himself on the West-East line (on which other Titans are standing). He can either stand to the left of all Titans, in between two consecutive Titans, or to the right of all Titans. He wants to choose a position that minimizes the units of energy required by all the Titans to rotate and face him. Find the minimum units of energy required by all the Titans for the Activation of the Rumbling in the optimal configuration.

question
  • 2 2 Answers
  • 206 Views
  • 0 Followers
  • 0
Answer
Share
  • Facebook

    2 Answers

    • Voted
    • Oldest
    • Recent
    1. Advance Learner
      Advance Learner
      2022-01-05T20:15:36+05:30Added an answer on January 5, 2022 at 8:15 pm

      The Rumbling is a hypothetical cataclysmic event involving Karl Fritz’s Wall Titans marching across the Earth, destroying all life upon …

        • 1
      • Reply
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. I'M ADMIN
      I'M ADMIN
      2022-01-05T20:33:52+05:30Added an answer on January 5, 2022 at 8:33 pm
      #include <bits/stdc++.h>
      
      #define int long long int
      
      #define endl '\n'
      
      using namespace std;
      
      signed  main()
      
      {
      
          
      
          int t;cin>>t;
      
          while(t--)
      
          {
      
              int n,x,y,i;cin>>n;
      
              string s;
      
              cin>>s;
      
              cin>>x>>y;
      
              int a[n+1],b[n+1];
      
              a[0]=0;b[0]=0;
      
              for(i=0;i<n;i++)
      
              {
      
                  if(s[i]=='E')
      
                  {
      
                      a[i+1]=a[i]+0;
      
                  }
      
                  else if(s[i]=='W')
      
                  {
      
                      a[i+1]=min(2ll*x,2ll*y)+a[i];
      
                  }
      
                  else if(s[i]=='N')
      
                  {
      
                      a[i+1]=min(x,3ll*y)+a[i];
      
                  }
      
                  else if(s[i]=='S')
      
                  {
      
                       a[i+1]=min(y,3ll*x)+a[i];
      
                  }
      
              }
      
              for(i=0;i<n;i++)
      
              {
      
                  if(s[i]=='E')
      
                  {
      
                      b[i+1]=b[i]+min(2ll*x,2ll*y);
      
                  }
      
                  else if(s[i]=='W')
      
                  {
      
                      b[i+1]=0+b[i];
      
                  }
      
                  else if(s[i]=='N')
      
                  {
      
                      b[i+1]=min(y,3ll*x)+b[i];
      
                  }
      
                  else if(s[i]=='S')
      
                  {
      
                       b[i+1]=min(x,3ll*y)+b[i];
      
                  }
      
              }
      
              int ans=min(a[n],b[n]),z;
      
              for(i=1;i<n;i++)
      
              {
      
                  z= a[i]+b[n]-b[i];
      
                  ans=min(ans,z);
      
              }
      
              cout<<ans<<endl;
      
          }
      
          return 0;
      
      }
        • 0
      • Reply
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn

    Leave an answer
    Cancel reply

    You must login to add an answer.

    Forgot Password?

    Need An Account, Sign Up Here

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved

    Insert/edit link

    Enter the destination URL

    Or link to existing content

      No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.