Codeforces Round #624 (Div. 3)



Catalogue



1311A-Add Odd or Subtract Even[简单思维]

time limit per testmemory limit per testinputoutput
2 seconds256 megabytesstandard inputstandard output

Description:

You are given two positive integers a a a and b b b.
In one move, you can change a in the following way:
Choose any positive odd integer x ( x > 0 ) x (x>0) x(x>0)and replace a a a with a + x a+x a+x;
choose any positive even integer y ( y > 0 ) y (y>0) y(y>0) and replace a a a with a − y a−y ay.
You can perform as many such operations as you want. You can choose the same numbers x x x and y y y in different moves.
Your task is to find the minimum number of moves required to obtain b b b from a a a. It is guaranteed that you can always obtain b b b from a a a.
You have to answer t t t independent test cases.

Input

The first line of the input contains one integer t t t ( 1 ≤ t ≤ 1 0 4 ) (1 \leq t \leq 10^4) (1t104) — the number of test cases.
Then t t t test cases follow. Each test case is given as two space-separated integers a a a and b b b ( 1 ≤ a , b ≤ 1 0 9 ) (1 \leq a,b \leq 10^9) (1a,b109).

Output

For each test case, print the answer — the minimum number of moves required to obtain b b b from a a a if you can perform any number of moves described in the problem statement. It is guaranteed that you can always obtain b b b from a a a.

Example input

5
2 3
10 10
2 4
7 4
9 3

Example output

1
0
2
2
1

Note

In the first test case, you can just add 1.
In the second test case, you don’t need to do anything.
In the third test case, you can add 1 two times.
In the fourth test case, you can subtract 4 and add 1.
In the fifth test case, you can just subtract 6.

分析:
题意:
a a a移动到 b b b,每次 a a a可以移动 a + x , x ∈ ( x a+x, x \in (x % 2 != 0) a+x,x(x, 或者 a − y , y ∈ ( y a-y, y \in (y % 2 == 0) ay,y(y,且 a , b , x , y > 0 a, b, x, y > 0 a,b,x,y>0, 问所需的最少移动次数
做法:
很容易可以想到次数必然 ∈ 0 , 1 , 2 \in {0, 1, 2} 0,1,2,当 a ≤ b a \leq b ab时,若 ( b − a ) (b - a) % 2 != 0 (ba),直接选择奇数 x x x即可;若为偶数,选择奇数 x x x,在选择偶数 y y y
a > b a > b a>b同理,若 ( a − b ) (a - b) % 2 == 0 (ab),直接选择偶数 y y y即可;若为奇数,选择偶数 y y y,在选择奇数 x x x

Code:

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cstdio>
#include <vector>
#include <bitset>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
const int inf  = 1e18;
const int maxn = 1e3 + 5;

int main() {
    int T;
    scanf("%d", &T);
    while(T--) {
        int a, b;
        scanf("%d%d", &a, &b);
        if(a == b)	puts("0");
        else if((b - a) > 0 && (b - a) % 2 != 0)    puts("1");
        else if((a - b) > 0 && (a - b) % 2 == 0)    puts("1");
        else    	puts("2");
    }
    return 0;
}



1311B-WeirdSor[简单思维]

time limit per testmemory limit per testinputoutput
2 seconds256 megabytesstandard inputstandard output

Description:

You are given an array a a a of length n n n.
You are also given a a a set of distinct positions p 1 , p 2 , … , p m p_1,p_2,…,p_m p1,p2,,pm, where 1 ≤ p i < n 1≤pi<n 1pi<n. The position p i p_i pi means that you can swap elements a [ p i ] a[p_i] a[pi] and a [ p i + 1 ] a[p_{i+1}] a[pi+1]. You can apply this operation any number of times for each of the given positions.
Your task is to determine if it is possible to sort the initial array in non-decreasing order ( a 1 ≤ a 2 ≤ ⋯ ≤ a n ) (a_1≤a_2≤⋯≤a_n) (a1a2an) using only allowed swaps.
For example, if a = [ 3 , 2 , 1 ] a=[3,2,1] a=[3,2,1] and p = [ 1 , 2 ] p=[1,2] p=[1,2], then we can first swap elements a [ 2 ] a[2] a[2] and a [ 3 ] a[3] a[3] (because position 2 2 2 is contained in the given set p p p). We get the array a = [ 3 , 1 , 2 ] a=[3,1,2] a=[3,1,2]. Then we swap a [ 1 ] a[1] a[1] and a [ 2 ] a[2] a[2] (position 1 1 1 is also contained in p p p). We get the array a = [ 1 , 3 , 2 ] a=[1,3,2] a=[1,3,2]. Finally, we swap a [ 2 ] a[2] a[2] and a [ 3 ] a[3] a[3] again and get the array a = [ 1 , 2 , 3 ] a=[1,2,3] a=[1,2,3], sorted in non-decreasing order.
You can see that if a = [ 4 , 1 , 2 , 3 ] a=[4,1,2,3] a=[4,1,2,3] and p = [ 3 , 2 ] p=[3,2] p=[3,2] then you cannot sort the array.
You have to answer t t t independent test cases.

Input

The first line of the input contains one integer t ( 1 ≤ t ≤ 100 ) t (1≤t≤100) t(1t100) — the number of test cases.
Then t t t test cases follow. The first line of each test case contains two integers n n n and m m m ( 1 ≤ m < n ≤ 100 ) (1≤m<n≤100) (1m<n100) — the number of elements in a a a and the number of elements in p p p. The second line of the test case contains n n n integers a 1 , a 2 , … , a n ( 1 ≤ a i ≤ 100 ) a_1,a_2,…,a_n (1≤ai≤100) a1,a2,,an(1ai100). The third line of the test case contains m m m integers p 1 , p 2 , … , p m p_1,p_2,…,p_m p1,p2,,pm ( 1 ≤ p i < n (1≤pi<n (1pi<n, all p i p_i pi are distinct) — the set of positions described in the problem statement.

Output

For each test case, print the answer — “YES” (without quotes) if you can sort the initial array in non-decreasing order ( a 1 ≤ a 2 ≤ ⋯ ≤ a n ) (a_1≤a_2≤⋯≤a_n) (a1a2an) using only allowed swaps. Otherwise, print “NO”.

Example input

6
3 2
3 2 1
1 2
4 2
4 1 2 3
3 2
5 1
1 2 3 4 5
1
4 2
2 1 4 3
1 3
4 2
4 3 2 1
1 3
5 2
2 1 2 3 3
1 4

Example output

YES
NO
YES
YES
NO
YES

分析:
题意:
有一个数组 a a a长度为 n n n, 一个数组 p p p长度为 n n n, p [ i ] p[i] p[i]表示数组 a [ p [ i ] ] a[p[i]] a[p[i]]的值可以与 a [ p [ i ] + 1 ] a[p[i]+1] a[p[i]+1]的值互换,问最后能否是一个非递减数组
做法:
要求得非递减数组,可以直接排序,然后将原本下标比较小的排前面
容易可以知道这就是最后数组每个数应该在的位置。可以发现若要使 a [ i + 2 ] a[i+2] a[i+2]的数可以换到 a [ i ] a[i] a[i]的位置,则必须有 p [ j ] = i , p [ k ] = i + 1 p[j] = i, p[k] = i+1 p[j]=i,p[k]=i+1

Code:

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cstdio>
#include <vector>
#include <bitset>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
const int inf  = 0x3f3f3f3f;
const int maxn = 100 + 5;
 
struct node {
    int x, id;
    bool operator<(const node &ope) const {
        if(x == ope.x)  return id < ope.id;
        return x < ope.x;
    }
}b[maxn];
bool vis[maxn];
 
int main() {
    int T;
    scanf("%d", &T);
    while(T--) {
        int n, m, x;
        scanf("%d%d", &n, &m);
        for(int i = 1; i <= n; ++i) {
            scanf("%d", &b[i].x);
            b[i].id = i, vis[i] = false;
        }
        for(int i = 1; i <= m; ++i) {
            scanf("%d", &x);
            vis[x] = true;
        }
        bool flag = true;
        sort(b + 1, b + 1 + n);
        for(int i = 1; i <= n; ++i) {
            if(b[i].id == i)    continue;
            int id1 = b[i].id, id2 = i;
            if(id1 > id2)   swap(id1, id2);
            for(int j= id1; j < id2; ++j) {
                if(vis[j])    continue;
                flag = false;
            }
            if(!flag)   break;
        }
        if(flag)    puts("YES");
        else        puts("NO");
    }
    return 0;
}



1311C-Perform the Combo[简单思维]

time limit per testmemory limit per testinputoutput
2 seconds256 megabytesstandard inputstandard output

Description:

You want to perform the combo on your opponent in one popular fighting game. The combo is the string s s s consisting of n n n lowercase Latin letters. To perform the combo, you have to press all buttons in the order they appear in s s s. I.e. if s = " a b c a " s="abca" s="abca" then you have to press ′ a ′ 'a' a, then ′ b 'b b', ′ c ′ 'c' c and ′ a ′ 'a' a again.
You know that you will spend m m m wrong tries to perform the combo and during the i − t h i-th ith try you will make a mistake right after p i − t h p_i-th pith button (1≤pi<n) (i.e. you will press first pi buttons right and start performing the combo from the beginning). It is guaranteed that during the ( m + 1 ) − t h (m+1)-th (m+1)th try you press all buttons right and finally perform the combo.
I.e. if s = " a b c a " s="abca" s="abca", m = 2 m=2 m=2 and p = [ 1 , 3 ] p=[1,3] p=[1,3] then the sequence of pressed buttons will be ‘a’ (here you’re making a mistake and start performing the combo from the beginning), ‘a’, ‘b’, ‘c’, (here you’re making a mistake and start performing the combo from the beginning), ‘a’ (note that at this point you will not perform the combo because of the mistake), ‘b’, ‘c’, ‘a’.
Your task is to calculate for each button (letter) the number of times you’ll press it.
You have to answer t t t independent test cases.

Input

The first line of the input contains one integer t ( 1 ≤ t ≤ 1 0 4 ) t (1≤t≤10^4) t(1t104) — the number of test cases.
Then t t t test cases follow.
The first line of each test case contains two integers n n n and m m m ( 2 ≤ n ≤ 2 ⋅ 1 0 5 , 1 ≤ m ≤ 2 ⋅ 1 0 5 ) (2≤n≤2⋅10^5, 1≤m≤2⋅10^5) (2n2105,1m2105) — the length of s s s and the number of tries correspondingly.
The second line of each test case contains the string s s s consisting of n n n lowercase Latin letters.
The third line of each test case contains m integers p 1 , p 2 , … , p m ( 1 ≤ p i < n ) p_1,p_2,…,p_m (1≤p_i<n) p1,p2,,pm(1pi<n) — the number of characters pressed right during the i-th try.
It is guaranteed that the sum of n n n and the sum of m both does not exceed 2 ⋅ 1 0 5 2⋅10^5 2105 ( ∑ n ≤ 2 ⋅ 1 0 5 , ∑ m ≤ 2 ⋅ 1 0 5 ) (\sum n≤2⋅10^5, \sum m≤2⋅10^5) (n2105,m2105).
It is guaranteed that the answer for each letter does not exceed 2 ⋅ 1 0 9 2⋅10^9 2109.

Output

For each test case, print the answer — 26 integers: the number of times you press the button ‘a’, the number of times you press the button ‘b’, …, the number of times you press the button ‘z’.

Example input

3
4 2
abca
1 3
10 5
codeforces
2 8 3 2 9
26 10
qwertyuioplkjhgfdsazxcvbnm
20 10 1 2 3 5 10 5 9 4

Example output

4 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 9 4 5 3 0 0 0 0 0 0 0 0 9 0 0 3 1 0 0 0 0 0 0 0
2 1 1 2 9 2 2 2 5 2 2 2 1 1 5 4 11 8 2 7 5 1 10 1 5 2

分析:
题意:
统计每次字符串从 0 → p [ i ] 0 \rightarrow p[i] 0p[i]每个字母出现的次数的总和,最后还要将原串再算一次
没什么技巧,就是看有没有看懂题目而已

Code:

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cstdio>
#include <vector>
#include <bitset>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
const int inf  = 0x3f3f3f3f;
const int maxn = 2e5 + 5;
 
char s[maxn];
int a[maxn][30];
int sum[30];
 
int main() {
    int T, x;
    const char str[10] = "abca";
    scanf("%d", &T);
    while(T--) {
        int n, m;
        memset(sum, 0, sizeof(sum));
        scanf("%d%d%s", &n, &m, s + 1);
        for(int i = 1; i <= n; ++i) {
            for(int j = 0; j < 26; ++j) {
                if(i == 1)  a[i][j] = 0;
                else        a[i][j] = a[i - 1][j];
                if(j == s[i] - 'a') a[i][j]++;
            }
        }
        for(int i = 1; i <= m; ++i) {
            scanf("%d", &x);
            for(int j = 0; j < 26; ++j)
                sum[j] += a[x][j];
        }
        for(int i = 0; i < 26; ++i)
            printf("%d%c", sum[i] + a[n][i], i == 25 ? '\n' : ' ');
    }
    return 0;
}



1311D-Three Integers[暴力]

time limit per testmemory limit per testinputoutput
2 seconds256 megabytesstandard inputstandard output

Description:

You are given three integers a ≤ b ≤ c a≤b≤c abc.
In one move, you can add + 1 +1 +1 or − 1 −1 1 to any of these integers (i.e. increase or decrease any number by one). You can perform such operation any (possibly, zero) number of times, you can even perform this operation several times with one number. Note that you cannot make non-positive numbers using such operations.
You have to perform the minimum number of such operations in order to obtain three integers A ≤ B ≤ C A≤B≤C ABC such that B B B is divisible by A A A and C C C is divisible by B B B.
You have to answer t t t independent test cases.

Input

The first line of the input contains one integer t ( 1 ≤ t ≤ 100 ) t (1≤t≤100) t(1t100) — the number of test cases.
The next t t t lines describe test cases. Each test case is given on a separate line as three space-separated integers a , b a,b a,b and c c c ( 1 ≤ a ≤ b ≤ c ≤ 1 0 4 ) (1≤a≤b≤c≤10^4) (1abc104).

Output

For each test case, print the answer. In the first line print res — the minimum number of operations you have to perform to obtain three integers A ≤ B ≤ C A≤B≤C ABC such that B B B is divisible by A A A and C C C is divisible by B B B. On the second line print any suitable triple A , B A,B A,B and C C C.

Example input

8
1 2 3
123 321 456
5 10 15
15 18 21
100 100 101
1 22 29
3 19 38
6 30 46

Example output

1
1 1 3
102
114 228 456
4
4 8 16
6
18 18 18
1
100 100 100
7
1 22 22
2
1 19 38
8
6 24 48

分析:
题意:
A , B , C A, B, C A,B,C每次可以改变自身 + 1 +1 +1 or − 1 -1 1, 问至少要改变几次才能使 B % A = = 0 B \% A == 0 B%A==0 & & \&\& && C % B = = 0 C \% B == 0 C%B==0
分析:
1 ≤ A , B , C ≤ 1 e 4 1 \leq A, B, C \leq 1e4 1A,B,C1e4, 其实只要暴力就可以了,只是范围要扩大到 2 e 4 2e4 2e4
忘记改了睡了一觉被 h a c k hack hack,枯了

Code:

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cstdio>
#include <vector>
#include <bitset>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
const int inf  = 0x3f3f3f3f;
const int maxn = 2e5 + 5;
 
 
int main() {
    int T;
    scanf("%d", &T);
    while(T--) {
        int a, b, c, ans = inf;
        int ea, eb, ec, k;
        scanf("%d%d%d", &a, &b, &c);
        for(int i = 1; i <= 20000; ++i) {
            for(int j = i; j <= 20000; j += i) {
                if(c - c / j * j < (c / j + 1) * j - c)
                    k = c / j * j;
                else
                    k = (c / j + 1) * j;
                if(k < j)   continue;
                if(ans > abs(a - i) + abs(b - j) + abs(c - k)) {
                    ea = i, eb = j, ec = k;
                    ans = abs(a - i) + abs(b - j) + abs(c - k);
                }
            }
        }
        printf("%d\n%d %d %d\n", ans, ea, eb, ec);
    }
    return 0;
}



1311E-Construct the Binary Tree

time limit per testmemory limit per testinputoutput
2 seconds256 megabytesstandard inputstandard output

Description:

You are given two integers n n n and d d d. You need to construct a rooted binary tree consisting of n n n vertices with a root at the vertex 1 1 1 and the sum of depths of all vertices equals to d d d.
A tree is a connected graph without cycles. A rooted tree has a special vertex called the root. A parent of a vertex v v v is the last different from v v v vertex on the path from the root to the vertex v v v. The depth of the vertex v v v is the length of the path from the root to the vertex v v v. Children of vertex v v v are all vertices for which v v v is the parent. The binary tree is such a tree that no vertex has more than 2 2 2 children.
You have to answer t t t independent test cases.

Input

The first line of the input contains one integer t ( 1 ≤ t ≤ 1000 ) t (1≤t≤1000) t(1t1000) — the number of test cases.
The only line of each test case contains two integers n n n and d ( 2 ≤ n , d ≤ 5000 ) d (2≤n,d≤5000) d(2n,d5000) — the number of vertices in the tree and the required sum of depths of all vertices.
It is guaranteed that the sum of n n n and the sum of d both does not exceed 5000 5000 5000 ( ∑ n ≤ 5000 , ∑ d ≤ 5000 ) ( \sum n≤5000, \sum d≤5000) (n5000,d5000).

Output

For each test case, print the answer.
If it is impossible to construct such a tree, print “NO” (without quotes) in the first line. Otherwise, print “{YES}” in the first line. Then print n − 1 n−1 n1 integers p 2 , p 3 , … , p n p_2,p_3,…,p_n p2,p3,,pn in the second line, where p i p_i pi is the parent of the vertex i i i. Note that the sequence of parents you print should describe some binary tree.

Example input

3
5 7
10 19
10 18

Example output

YES
1 2 1 3
YES
1 2 3 3 9 9 2 1 6
NO

分析:
题意:
_ ( : з 」 ∠ ) _ \_(:з」∠)\_ _(:з)_模拟题,懒得写

Code:





1311F-Moving Points

time limit per testmemory limit per testinputoutput
2 seconds256 megabytesstandard inputstandard output

Description:

There are n n n points on a coordinate axis OX. The i-th point is located at the integer point x i x_i xi and has a speed v i v_i vi. It is guaranteed that no two points occupy the same coordinate. All n n n points move with the constant speed, the coordinate of the i-th point at the moment t t t ( t t t can be non-integer) is calculated as x i + t ⋅ v i x_i+t⋅v_i xi+tvi.
Consider two points i i i and j j j. Let d ( i , j ) d(i,j) d(i,j) be the minimum possible distance between these two points over any possible moments of time (even non-integer). It means that if two points i i i and j j j coincide at some moment, the value d ( i , j ) d(i,j) d(i,j) will be 0 0 0.
Your task is to calculate the value ∑ 1 ≤ i < j ≤ n d ( i , j ) \sum_{1≤i<j≤n}d(i,j) 1i<jnd(i,j) (the sum of minimum distances over all pairs of points).

Input

The first line of the input contains one integer n ( 2 ≤ n ≤ 2 ⋅ 1 0 5 ) n (2≤n≤2⋅10^5) n(2n2105) — the number of points.
The second line of the input contains n n n integers x 1 , x 2 , … , x n ( 1 ≤ x i ≤ 1 0 8 ) x_1,x_2,…,x_n (1≤x_i≤10^8) x1,x2,,xn(1xi108), where x i x_i xi is the initial coordinate of the i-th point. It is guaranteed that all x i x_i xi are distinct.
The third line of the input contains n n n integers v 1 , v 2 , … , v n ( − 1 0 8 ≤ v i ≤ 1 0 8 ) v_1,v_2,…,v_n (−10^8≤v_i≤10^8) v1,v2,,vn(108vi108), where v i v_i vi is the speed of the i-th point.

Output

Print one integer — the value ∑ 1 ≤ i < j ≤ n d ( i , j ) \sum_{1≤i<j≤n} d(i,j) 1i<jnd(i,j) (the sum of minimum distances over all pairs of points).

One Example input

3
1 3 2
-100 2 3

One Example output

3

Two Example input

5
2 1 4 3 5
2 2 2 3 4

Two Example output

19

Three Example input

2
2 1
-3 0

Three Example output

0

分析:
题意: n n n个点,给出每个点的坐标和速度,点可以在 x x x轴上移动,时间不限,要求 ∑ 1 ≤ i < j ≤ n d i s ( i , j ) \sum_{1 \leq i < j \leq n}dis(i,j) 1i<jndis(i,j)的最小值
做法: 根据题意,意思就是可以在 i , j i, j i,j两个点分别运动到任意时刻的距离为 d i s ( i , j ) dis(i,j) dis(i,j),要使得 d i s ( i , j ) dis(i,j) dis(i,j)最小,则有三种可能性

  1. i , j i,j i,j无法相遇,要满足 x i < x j & & v i ≤ v j x_i < x_j \&\& v_i \leq v_j xi<xj&&vivj,则 m i n ( d i s ( i , j ) ) = x j − x i min(dis(i,j)) = x_j-x_i min(dis(i,j))=xjxi,即 t = 0 t=0 t=0
  2. 否则他们必然会在某一时刻相遇,相遇则 m i n ( d i s ( i , j ) ) = 0 min(dis(i,j))=0 min(dis(i,j))=0

因此只要计算第一点所有的 d i s dis dis的和即可
那么对于每一个 x i x_i xi,我所要求的贡献即为 x i × c n t − s u m x_i \times cnt - sum xi×cntsum c n t cnt cnt x < x i x < x_i x<xi v > v i v > v_i v>vi的个数, s u m sum sum就是这些点的和
由于 v v v较大,可以进行离散化
x x x进行排序,小的在前大的在后,循环一次计算每次 v < v i v<v_i v<vi c n t , s u m cnt,sum cnt,sum
利用树状数组维护 c n t , s u m cnt, sum cnt,sum

Code:

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cstdio>
#include <vector>
#include <bitset>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
const int inf  = 0x3f3f3f3f;
const int maxn = 2e5 + 5;

#define lowbit(x)   x&(-x)

struct node {
    ll x, v;
    bool operator<(const node &ope) const {
        return x < ope.x;
    }
}a[maxn];
ll cnt[2][maxn]; // 0 个数, 1 和
ll vv[maxn];
int k;

void update(int id, int val) {
    for(int i = id; i <= k; i += lowbit(i))
        cnt[0][i]++, cnt[1][i] += val; 
}

ll query(int id, int k) {
    ll ans = 0;
    for(int i = id; i > 0; i -= lowbit(i))
        ans += cnt[k][i];
    return ans;
}

int main() {
    int n; ll res = 0;
    scanf("%d", &n);
    memset(cnt, 0, sizeof(cnt));
    for(int i = 1; i <= n; ++i) {
        scanf("%lld", &a[i].x);
    }
    for(int i = 1; i <= n; ++i) {
        scanf("%lld", &a[i].v); vv[i] = a[i].v;
    }
    // v[i]离散化, 比v[i]小的有几个
    sort(a + 1, a + 1 + n);
    sort(vv + 1, vv + 1 + n);
    k = unique(vv + 1, vv + 1 + n) - vv - 1;
    for(int i = 1; i <= n; ++i) {
        int pos = lower_bound(vv + 1, vv + 1 + k, a[i].v) - vv;
        res += a[i].x * query(pos, 0) - query(pos, 1);
        update(pos, a[i].x);
    }
    printf("%lld\n", res);
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值