Submission #57280629


Source Code Expand

Copy
#include<bits/stdc++.h>
//#define int long long
#define For(i, a, b) for(int i = (a); i <= (b); i++)
#define Rof(i, a, b) for(int i = (a); i >= (b); i--)
#define deb(x) cerr << #x"=" << x << '\n';
using namespace std;
const int N = 5e5 + 5;
int a = -1, b = -1, ans;
void Solve(){
int n, x; cin >> n;
char c;
while(n--){
cin >> x >> c;
if(c == 'L'){
if(a == -1) a = x;
else ans += abs(a - x), a = x;
}
else{
if(b == -1) b = x;
else ans += abs(b - x), b = x;
}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<bits/stdc++.h>
//#define int long long
#define For(i, a, b) for(int i = (a); i <= (b); i++)
#define Rof(i, a, b) for(int i = (a); i >= (b); i--)
#define deb(x) cerr << #x"=" << x << '\n';
using namespace std;
const int N = 5e5 + 5;
int a = -1, b = -1, ans;
void Solve(){
	int n, x; cin >> n;
	char c;
	while(n--){
		cin >> x >> c;
		if(c == 'L'){
			if(a == -1) a = x;
			else ans += abs(a - x), a = x;
		}
		else{
			if(b == -1) b = x;
			else ans += abs(b - x), b = x;
		}
	}
	cout << ans << '\n';
}	
signed main(){
	ios::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);
	int T = 1; //cin >> T;
	while(T--) Solve();
	return 0;
}

Submission Info

Submission Time
Task B - Piano 3
User Anyees
Language C++ 20 (gcc 12.2)
Score 200
Code Size 666 Byte
Status AC
Exec Time 1 ms
Memory 3604 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 3392 KB
00_sample_01.txt AC 1 ms 3600 KB
00_sample_02.txt AC 1 ms 3420 KB
01_random_00.txt AC 1 ms 3544 KB
01_random_01.txt AC 1 ms 3304 KB
01_random_02.txt AC 1 ms 3404 KB
01_random_03.txt AC 1 ms 3548 KB
01_random_04.txt AC 1 ms 3476 KB
01_random_05.txt AC 1 ms 3400 KB
01_random_06.txt AC 1 ms 3408 KB
01_random_07.txt AC 1 ms 3464 KB
01_random_08.txt AC 1 ms 3544 KB
01_random_09.txt AC 1 ms 3460 KB
01_random_10.txt AC 1 ms 3468 KB
01_random_11.txt AC 1 ms 3604 KB
01_random_12.txt AC 1 ms 3472 KB
01_random_13.txt AC 1 ms 3552 KB
01_random_14.txt AC 1 ms 3468 KB
02_handmade_00.txt AC 1 ms 3464 KB
02_handmade_01.txt AC 1 ms 3432 KB


2025-03-05 (Wed)
18:02:55 +00:00