ECR-103D Journey 题解

题目大意

有编号0~ n的n+1个点,中间有n条路,每条路有着不同的方向。

选择一个点作为起点,只能够按照顺着路的方向走,每走过一条路,所有的路的方向都会发生改变。

求每个点作为顶点,所能到达的最多的不同的点的个数。

解题思路

刚开始题目没看懂,楞是没看懂样例答案怎么来的。

后面仔细看才发现,走一步方向都会变。

看懂了,这题就不算难了。

对于每个点,只需要看左边和右边能走多远,以及能不能往左边和右边走。

第一个点和最后一个点需要特判一下。

完整代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include <bits/stdc++.h>
#include <iostream>
#include <cstdio>
#include <queue>
#include <deque>
#include <cstring>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <list>
#include <string>
#include <vector>
#include <algorithm>
#include <sstream>
#include <unordered_map>
using namespace std;
#pragma GCC optimize(1)
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#define rep(i,a,n) for (int i=a;i<=n;i++)
#define per(i,a,n) for (int i=a;i>=n;i--)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pll pair<ll,ll>
#define pii pair<int,int>
#define bg begin
#define rbg rbegin
#define ed end
#define dbg(x) cout << #x << "===" << x << endl
typedef double db;
typedef long long ll;
typedef unsigned long long ull;

const int N = 3e5 + 5;
int l[N], r[N];

int gcd(int a, int b) {
return !b ? a : gcd(b, a % b);
}

ll qpow(ll a, ll b) {
ll ans = 1;
while (b) {
if (b & 1) ans *= a;
a <<= 1, b >>= 1;
}
return ans;
}

int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
//freopen("D:\\测试用\\in.txt", "r", stdin);
//freopen("D:\\测试用\\out.txt", "w+", stdout);
int t; cin >> t;
while (t--) {
int n; cin >> n;
string s; cin >> s;
l[0] = r[n] = 0;
int len = s.length() - 1;
l[1] = 1;
rep(i, 1, len) {
if (s[i] == s[i - 1]) l[i + 1] = 1;
else l[i + 1] = l[i] + 1;
}
r[n - 1] = 1;
per(i, len - 1, 0) {
if (s[i] == s[i + 1]) r[i] = 1;
else r[i] = r[i + 1] + 1;
}
if (s[0] == 'R') cout << r[0] + 1;
else cout << 1;
rep(i, 1, n - 1) {
int ans = 1;
if (s[i - 1] == 'L') ans += l[i];
if (s[i] == 'R') ans += r[i];
cout << ' ' << ans;
}
if (s[len] == 'L') cout << ' ' << l[n] + 1;
else cout << ' ' << 1;
cout << endl;
}
return 0;
}
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • © 2015-2021 sakurakarma
  • Powered by Hexo Theme Ayer
  • PV: UV:

请我喝杯咖啡吧~

支付宝
微信