第一次打 USACO,只打到了 Silver
Bronze
Description
给定一个长度为 n n n 的字符串 s s s ,s s s 仅由 G
和 H
组成,求有多少个长度不小于 3 3 3 的子串只包含一个 G
或 H
。
3 ≤ n ≤ 5 × 1 0 5 3\le n \le 5\times 10^5 3 ≤ n ≤ 5 × 1 0 5
Solution
考虑对于每一个位置 i i i ,有多少个以 i i i 结尾的合法的子串,不难发现子串的开头是一段连续的,所以只需要预处理一下 i i i 前面第一个与 s i s_i s i 相同的位置 p r e i pre_i p r e i 和第一个与 s i s_i s i 不同的位置 l s t i lst_i l s t i
然后只需要分类讨论一下以 i i i 为结尾的子串中出现一次的字符是 G
还是 H
。
s i = s i − 1 s_i=s_{i-1} s i = s i − 1 或 s i − 1 ≠ s i − 2 s_{i-1}\neq s_{i-2} s i − 1 = s i − 2 时,也就是只出现一次的字符不是 s i s_i s i ,那么我们需要找到上一个与 s i s_i s i 不同的字符 s j s_j s j ,和 s j s_j s j 前面第一个与 s j s_j s j 相同的字符,中间都是合法的。
否则,也就是只出现一次的字符是 s i s_i s i ,那么直接找到上一个与 s i s_i s i 相同的即可。
算是铜组最恶心的一道了吧,其实也不难就是细节比较多。
Code
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 #include <bits/stdc++.h> #define ll long long #define db double #define gc getchar #define pc putchar using namespace std;namespace IO{ template <typename T> void read (T &x) { x = 0 ; bool f = 0 ; char c = gc (); while (!isdigit (c)) f |= c == '-' , c = gc (); while (isdigit (c)) x = x * 10 + c - '0' , c = gc (); if (f) x = -x; } template <typename T> void write (T x) { if (x < 0 ) pc ('-' ), x = -x; if (x > 9 ) write (x / 10 ); pc ('0' + x % 10 ); } } using namespace IO;const int N = 5e5 + 5 ;int n, pre[N], lst[N];char s[N];ll ans; int main () { read (n); scanf ("%s" , s + 1 ); int x = 0 , y = 0 ; pre[n + 1 ] = n; for (int i = 1 ; i <= n; i++) { if (s[i] == 'G' ) { pre[i] = x; lst[i] = y ? y : n + 1 ; x = i; } else { pre[i] = y; lst[i] = x ? x : n + 1 ; y = i; } } for (int i = 3 ; i <= n; i++) { if (s[i - 1 ] == s[i] || s[i - 2 ] != s[i - 1 ]) ans += max (min (lst[i], i - 2 ) - pre[lst[i]], 0 ); else ans += max (i - pre[i] - 2 , 0 ); } write (ans), pc ('\n' ); return 0 ; }
Description
给定两个长为 n n n 的序列 a , b a,b a , b ,每次操作可以将 a a a 序列中连续的一段就、 + 1 +1 + 1 或 − 1 -1 − 1 ,求最少需要操作多少次。
1 ≤ n ≤ 1 0 5 1\le n \le 10^5 1 ≤ n ≤ 1 0 5
Solution
直接做差,然后就转化成典中典了
就是有正有负,通过手玩不难发现每次操作不可能同时操作正负,分成两边单独操作一样是最优的
所以只需要指针扫一遍找出每个正、负区间,然后跑一遍单调栈即可。
Code
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 #include <bits/stdc++.h> #define ll long long #define db double #define gc getchar #define pc putchar using namespace std;namespace IO{ template <typename T> void read (T &x) { x = 0 ; bool f = 0 ; char c = gc (); while (!isdigit (c)) f |= c == '-' , c = gc (); while (isdigit (c)) x = x * 10 + c - '0' , c = gc (); if (f) x = -x; } template <typename T> void write (T x) { if (x < 0 ) pc ('-' ), x = -x; if (x > 9 ) write (x / 10 ); pc ('0' + x % 10 ); } } using namespace IO;const int N = 1e6 + 5 ;int n, a[N];int stk[N], top;ll ans; int main () { read (n); for (int i = 1 ; i <= n; i++) read (a[i]); for (int i = 1 , b; i <= n; i++) read (b), a[i] = b - a[i]; for (int l = 1 , r; l <= n; l = r + 1 ) { r = l + 1 ; while (r <= n && a[r] * a[r - 1 ] > 0 ) r++; r--; top = 0 ; for (int i = l; i <= r; i++) { a[i] = abs (a[i]); if (a[i] > stk[top]) ans += a[i] - stk[top]; while (top && stk[top] > a[i]) top--; stk[++top] = a[i]; } } write (ans), pc ('\n' ); return 0 ; }
Description
给定一个 n × n n\times n n × n 的矩阵,.
可以通过,H
不可以通过,只能向右或向下走,求在至多转向 k k k 次的前提下从左上角走到右下角有多少种方案。
2 ≤ n ≤ 50 , 1 ≤ k ≤ 3 2\le n \le 50,1\le k\le 3 2 ≤ n ≤ 5 0 , 1 ≤ k ≤ 3
Solution
很容易想到状态
f i , j , k , d f_{i,j,k,d} f i , j , k , d 表示从 ( 1 , 1 ) (1,1) ( 1 , 1 ) 走到 ( i , j ) (i,j) ( i , j ) 共转向 k k k 次,走过来后面向 d ( 0 右 , 1 下 ) d(0右,1下) d ( 0 右 , 1 下 ) 的方案数。
转移也比较简单,对于 d = 0 / 1 d=0/1 d = 0 / 1 分类讨论即可。
Code
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 #include <bits/stdc++.h> #define ll long long #define db double #define gc getchar #define pc putchar using namespace std;namespace IO{ template <typename T> void read (T &x) { x = 0 ; bool f = 0 ; char c = gc (); while (!isdigit (c)) f |= c == '-' , c = gc (); while (isdigit (c)) x = x * 10 + c - '0' , c = gc (); if (f) x = -x; } template <typename T> void write (T x) { if (x < 0 ) pc ('-' ), x = -x; if (x > 9 ) write (x / 10 ); pc ('0' + x % 10 ); } } using namespace IO;const int N = 55 ;int n, m;char s[N][N];int f[N][N][10 ][2 ];void solve () { memset (f, 0 , sizeof (f)); read (n), read (m); for (int i = 1 ; i <= n; i++) scanf ("%s" , s[i] + 1 ); f[1 ][0 ][0 ][0 ] = f[0 ][1 ][0 ][1 ] = 1 ; for (int i = 1 ; i <= n; i++) { if (s[1 ][i] == '.' ) f[1 ][i][0 ][0 ] = f[1 ][i - 1 ][0 ][0 ]; if (s[i][1 ] == '.' ) f[i][1 ][0 ][1 ] = f[i - 1 ][1 ][0 ][1 ]; } for (int i = 2 ; i <= n; i++) for (int j = 2 ; j <= n; j++) { if (s[i][j] == 'H' ) continue ; for (int k = 0 ; k <= m; k++) { f[i][j][k][0 ] += f[i][j - 1 ][k][0 ]; if (k) f[i][j][k][0 ] += f[i][j - 1 ][k - 1 ][1 ]; f[i][j][k][1 ] += f[i - 1 ][j][k][1 ]; if (k) f[i][j][k][1 ] += f[i - 1 ][j][k - 1 ][0 ]; } } ll ans = 0 ; for (int i = 0 ; i <= m; i++) ans += f[n][n][i][0 ] + f[n][n][i][1 ]; write (ans), pc ('\n' ); } int main () { int T; read (T); while (T--) solve (); return 0 ; }
Silver
Description
在一条数轴上,有 k k k 个点有权值, p i p_i p i 位置的权值为 t i t_i t i ,现在,对方已经占了 m m m 个位置 f 1 , f 2 , … f m f_1,f_2,\dots f_m f 1 , f 2 , … f m ,你要占 n n n 个位置(可以是小数),求最大的权值和为多少。
对于每个点,当这个点距离你占的最近位置小于对方占的最近位置时,你可以获得这个点的权值。
1 ≤ k ≤ 2 × 1 0 5 , 1 ≤ m ≤ 2 × 1 0 5 1\le k \le 2\times 10^5,1\le m\le 2\times 10^5 1 ≤ k ≤ 2 × 1 0 5 , 1 ≤ m ≤ 2 × 1 0 5 ,所有这些 k + m k+m k + m 个位置均是 [ 0 , 1 0 9 ] [0,10^9] [ 0 , 1 0 9 ] 内的不同整数。
Solution
考虑对方占的每两个位置之间
当在这个区间内放 2 2 2 个点时,是可以得到这个区间内所有点的权值的。
所以只需要计算只放 1 1 1 个点时,最多能得到多少权值。
因为在这个区间内的点距离对面占的最近位置就是到两端的最小值,所以我们可以知道要想得到任意一个点的权值需要在哪个区间占位置
画一下图发现从左到右的点需要的区间的左右端点都是递增的,所以就可以双指针乱扫了(
我们有了在每个区间内占 1 / 2 1/2 1 / 2 个位置能得到的权值,接下来考虑如何占位置。
这里需要反悔贪心,先把占一个的权值都加到大根堆里,然后在被选时,将占两个的权值减去占一个的权值 加到大根堆里,这样在下次选到时相当于占了两个。
Description
T T T 组数据,每组数据给定 n n n 个点 m m m 条无向边,现在至多建两条边,使得从 1 1 1 到 n n n 有路径,求建边的最小权值。
建一条从 i i i 到 j j j 的边的权值为 ( i − j ) 2 (i-j)^2 ( i − j ) 2
1 ≤ T ≤ 20 , 1 ≤ n ≤ 1 0 5 , ∑ ( n + m ) ≤ 5 × 1 0 5 1\le T \le 20,1\le n \le 10^5,\sum(n+m)\le 5\times 10^5 1 ≤ T ≤ 2 0 , 1 ≤ n ≤ 1 0 5 , ∑ ( n + m ) ≤ 5 × 1 0 5
Solution
先用并查集求出每个连通块,然后只需要求出 1 1 1 和 n n n 所在连通块到其他连通块的最短距离,枚举一遍求最小值即可。
在求最短距离时可以直接枚举每个点,在 1 1 1 和 n n n 所在连通块内二分找最小值
但我考场上没看见最后一个数据范围,就以为 O ( T n log n ) O(Tn\log n) O ( T n log n ) 过不去,然后写双指针乱扫,结果还没二分快 qaq
Code
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 88 89 90 #include <bits/stdc++.h> #define ll long long #define db double #define gc getchar #define pc putchar #define pb push_back using namespace std;namespace IO{ template <typename T> void read (T &x) { x = 0 ; bool f = 0 ; char c = gc (); while (!isdigit (c)) f |= c == '-' , c = gc (); while (isdigit (c)) x = x * 10 + c - '0' , c = gc (); if (f) x = -x; } template <typename T> void write (T x) { if (x < 0 ) pc ('-' ), x = -x; if (x > 9 ) write (x / 10 ); pc ('0' + x % 10 ); } } using namespace IO;const int N = 1e5 + 5 ;int n, m, f[N], id[N], cnt;vector <int > vec[N]; int Find (int a) { return f[a] == a ? a : f[a] = Find (f[a]); } int d1[N], d2[N];void work () { read (n), read (m); for (int i = 1 ; i <= n; i++) f[i] = i; for (int i = 1 ; i <= m; i++) { int u, v; read (u), read (v); if (Find (u) != Find (v)) f[Find (v)] = Find (u); } if (Find (1 ) == Find (n)) { puts ("0" ); return ; } cnt = 0 ; for (int i = 1 ; i <= n; i++) { int x = Find (i); if (!id[x]) id[x] = ++cnt; vec[id[x]].pb (i); } int S = id[Find (1 )], T = id[Find (n)]; memset (d1, 0x3f , sizeof (d1)); memset (d2, 0x3f , sizeof (d2)); for (int i = 1 ; i <= n; i++) { int x = id[Find (i)]; int pos = lower_bound (vec[S].begin (), vec[S].end (), i) - vec[S].begin (); d1[x] = min (d1[x], min (pos ? abs (i - vec[S][pos - 1 ]) : n, pos < (int )vec[S].size () ? abs (i - vec[S][pos]) : n)); pos = lower_bound (vec[T].begin (), vec[T].end (), i) - vec[T].begin (); d2[x] = min (d2[x], min (pos ? abs (i - vec[T][pos - 1 ]) : n, pos < (int )vec[T].size () ? abs (i - vec[T][pos]) : n)); } ll ans = 1ll * (n - 1 ) * (n - 1 ); for (int i = 1 ; i <= cnt; i++) ans = min (ans, 1ll * d1[i] * d1[i] + 1ll * d2[i] * d2[i]); write (ans), pc ('\n' ); memset (id, 0 , sizeof (id)); for (int i = 1 ; i <= cnt; i++) vec[i].clear (); return ; } signed main () { int T; read (T); while (T--) work (); return 0 ; }
Description
给定 n n n 个区间,第 i i i 个区间为 [ a i , b i ] [a_i,b_i] [ a i , b i ] ,在其中选两个区间(可以重复),对于 0 ≤ k ≤ 2 m 0\le k \le 2m 0 ≤ k ≤ 2 m 的每个 k k k ,求满足 a i + a j ≤ k ≤ b i + b j a_i+a_j\le k \le b_i+b_j a i + a j ≤ k ≤ b i + b j 的方案数。
1 ≤ n ≤ 2 × 1 0 5 , 1 ≤ m ≤ 5000 , a i ≤ b i 1\le n\le 2\times 10^5,1\le m\le 5000,a_i\le b_i 1 ≤ n ≤ 2 × 1 0 5 , 1 ≤ m ≤ 5 0 0 0 , a i ≤ b i
Solution
只要你发现 n ≤ 2 × 1 0 5 n\le 2\times10^5 n ≤ 2 × 1 0 5 ,而 m ≤ 5000 m\le 5000 m ≤ 5 0 0 0 ,这道题你就做出来一半了(
因此我们可以开个桶,然后 O ( m 2 ) O(m^2) O ( m 2 ) 枚举值域,将 a i + a j = k a_i+a_j=k a i + a j = k 和 b i + b j = k b_i+b_j=k b i + b j = k 的方案数都求出来,注意当 a i = a j a_i=a_j a i = a j 时要特殊处理一下。
考虑 k k k 变成 k + 1 k+1 k + 1 有什么变化,只需要将 a i + a j = k + 1 a_i+a_j=k+1 a i + a j = k + 1 的方案数加上,将 b i + b j = k b_i+b_j=k b i + b j = k 的方案数减掉。
也相当于差分,可以在最后求个前缀和。
Code
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 #include <bits/stdc++.h> #define ll long long #define db double #define gc getchar #define pc putchar using namespace std;namespace IO{ template <typename T> void read (T &x) { x = 0 ; bool f = 0 ; char c = gc (); while (!isdigit (c)) f |= c == '-' , c = gc (); while (isdigit (c)) x = x * 10 + c - '0' , c = gc (); if (f) x = -x; } template <typename T> void write (T x) { if (x < 0 ) pc ('-' ), x = -x; if (x > 9 ) write (x / 10 ); pc ('0' + x % 10 ); } } using namespace IO;const int N = 2e5 + 5 ;int n, m, a[N], b[N];ll ca[N], cb[N]; ll l[N], r[N]; int main () { read (n), read (m); for (int i = 1 ; i <= n; i++) read (a[i]), read (b[i]), ca[a[i]]++, cb[b[i]]++; for (int i = 0 ; i <= m; i++) for (int j = 0 ; j <= m; j++) if (i != j) l[i + j] += ca[i] * ca[j], r[i + j] += cb[i] * cb[j]; for (int i = 0 ; i <= m; i++) l[i + i] += ca[i] * ca[i], r[i + i] += cb[i] * cb[i]; ll ans = 0 ; for (int i = 0 ; i <= m + m; i++) ans += l[i], write (ans), pc ('\n' ), ans -= r[i]; return 0 ; }