Submission #57282457


Source Code Expand

Copy
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, x) for (int i = 0; i < (x); i++)
int main()
{
int N;
cin >> N;
vector<pair<int, char>> piano(N);
rep(i, N) cin >> piano[i].first >> piano[i].second;
int ans = 0, L = 0, R = 0;
for (int i = 0; i < N; i++)
{
if (piano[i].second == 'L')
{
if (L == 0)
{
L = piano[i].first;
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#define rep(i, x) for (int i = 0; i < (x); i++)

int main()
{
  int N;
  cin >> N;
  vector<pair<int, char>> piano(N);
  rep(i, N) cin >> piano[i].first >> piano[i].second;

  int ans = 0, L = 0, R = 0;
  for (int i = 0; i < N; i++)
  {
    if (piano[i].second == 'L')
    {
      if (L == 0)
      {
        L = piano[i].first;
      }
      else
      {
        ans += abs(piano[i].first - L);
        L = piano[i].first;
      }
    }
    else if (piano[i].second == 'R')
    {
      if (piano[i].second == 'R')
      {
        if (R == 0)
        {
          R = piano[i].first;
        }
        else
        {
          ans += abs(piano[i].first - R);
          R = piano[i].first;
        }
      }
    }
  }
  cout << ans << endl;
  return 0;
}

Submission Info

Submission Time
Task B - Piano 3
User ryoh1004
Language C++ 23 (gcc 12.2)
Score 200
Code Size 821 Byte
Status AC
Exec Time 1 ms
Memory 3632 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 20
Set Name Test Cases
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 01_random_13.txt, 01_random_14.txt, 02_handmade_00.txt, 02_handmade_01.txt
Case Name Status Exec Time Memory
00_sample_00.txt AC 1 ms 3480 KB
00_sample_01.txt AC 1 ms 3436 KB
00_sample_02.txt AC 1 ms 3484 KB
01_random_00.txt AC 1 ms 3552 KB
01_random_01.txt AC 1 ms 3488 KB
01_random_02.txt AC 1 ms 3488 KB
01_random_03.txt AC 1 ms 3524 KB
01_random_04.txt AC 1 ms 3444 KB
01_random_05.txt AC 1 ms 3356 KB
01_random_06.txt AC 1 ms 3460 KB
01_random_07.txt AC 1 ms 3412 KB
01_random_08.txt AC 1 ms 3352 KB
01_random_09.txt AC 1 ms 3552 KB
01_random_10.txt AC 1 ms 3632 KB
01_random_11.txt AC 1 ms 3460 KB
01_random_12.txt AC 1 ms 3464 KB
01_random_13.txt AC 1 ms 3436 KB
01_random_14.txt AC 1 ms 3488 KB
02_handmade_00.txt AC 1 ms 3488 KB
02_handmade_01.txt AC 1 ms 3484 KB


2025-04-05 (Sat)
10:36:44 +00:00