ACM第四次比赛题目及标准程序(STL模板类)

欢迎访问XYNUOJ

题目A: 胜利大逃亡

时间限制: 2 Sec  内存限制: 33 MB

题目描述

Ignatius被魔王抓走了,有一天魔王出差去了,这可是Ignatius逃亡的好机会.

魔王住在一个城堡里,城堡是一个A*B*C的立方体,可以被表示成A个B*C的矩阵,刚开始Ignatius被关在(0,0,0)的位置,离开城堡的门在(A-1,B-1,C-1)的位置,现在知道魔王将在T分钟后回到城堡,Ignatius每分钟能从一个坐标走到相邻的六个坐标中的其中一个.现在给你城堡的地图,请你计算出Ignatius能否在魔王回来前离开城堡(只要走到出口就算离开城堡,如果走到出口的时候魔王刚好回来也算逃亡成功),如果可以请输出需要多少分钟才能离开,如果不能则输出-1.


输入

输入数据的第一行是一个正整数K,表明测试数据的数量.每组测试数据的第一行是四个正整数A,B,C和T(1<=A,B,C<=50,1<=T<=1000),它们分别代表城堡的大小和魔王回来的时间.然后是A块输入数据(先是第0块,然后是第1块,第2块......),每块输入数据有B行,每行有C个正整数,代表迷宫的布局,其中0代表路,1代表墙.(如果对输入描述不清楚,可以参考Sample Input中的迷宫描述,它表示的就是上图中的迷宫)

特别注意:本题的测试数据非常大,请使用scanf输入,我不能保证使用cin能不超时.在本OJ上请使用Visual C++提交.

输出

对于每组测试数据,如果Ignatius能够在魔王回来前离开城堡,那么请输出他最少需要多少分钟,否则输出-1.


样例输入

1
3 3 4 20
0 1 1 1
0 0 1 1
0 1 1 1
1 1 1 1
1 0 0 1
0 1 1 1
0 0 0 0
0 1 1 0
0 1 1 0

样例输出

11

 
 
  1. #include <stdio.h>    
  2. #include <string.h>    
  3. #include <queue>    
  4. using namespace std;    
  5. const int N = 55;    
  6.     
  7. int map[N][N][N];    
  8. int vis[N][N][N];    
  9. int tx[] = {1,-1,0,0,0,0};    
  10. int ty[] = {0,0,1,-1,0,0};    
  11. int tz[] = {0,0,0,0,1,-1};    
  12. int a,b,c,t,ans;    
  13.     
  14. struct Node    
  15. {    
  16.     int x,y,z,step;    
  17. };    
  18.     
  19. int abs(int x)//绝对值    
  20. {    
  21.     return x<0?-x:x;    
  22. }    
  23.     
  24. int check(int i,int j,int k)//判断是否可行    
  25. {    
  26.     if(i<0 || j<0 || k<0 || i>=a || j>=b || k>=c || map[i][j][k])    
  27.     return 0;    
  28.     return 1;    
  29. }    
  30.     
  31. int bfs(int x,int y,int z)    
  32. {    
  33.     int i;    
  34.     queue<Node> Q;    
  35.     Node p,q;    
  36.     p.x = x;    
  37.     p.y = y;    
  38.     p.z = z;    
  39.     p.step = 0;    
  40.     vis[x][y][z] = 1;    
  41.     Q.push(p);    
  42.     while(!Q.empty())    
  43.     {    
  44.         p = Q.front();    
  45.         Q.pop();    
  46.         if(p.x == a-1 && p.y == b-1 && p.z==c-1 && p.step<=t)    
  47.         return p.step;    
  48.         for(i = 0;i<6;i++)    
  49.         {    
  50.             q = p;    
  51.             q.x+=tx[i];    
  52.             q.y+=ty[i];    
  53.             q.z+=tz[i];    
  54.             if(!vis[q.x][q.y][q.z] && check(q.x,q.y,q.z))    
  55.             {    
  56.                 q.step++;    
  57.                 vis[q.x][q.y][q.z] = 1;    
  58.                 if(abs(q.x-a+1)+abs(q.y-b+1)+abs(q.z-c+1)+q.step>t)//由于行走只能朝6个固定方向,这里是对剩下时间里能否走到出口进行预判,如果走最短路径依然不能再规定时间内到达出口,明显是不行的,当然不加这个判断也能AC,只是比较消耗时间    
  59.                 continue;    
  60.                 Q.push(q);    
  61.             }    
  62.         }    
  63.     }    
  64.     return -1;    
  65. }    
  66.     
  67. int main()    
  68. {    
  69.     int cas;    
  70.     scanf("%d",&cas);    
  71.     while(cas--)    
  72.     {    
  73.         int i,j,k;    
  74.         scanf("%d%d%d%d",&a,&b,&c,&t);    
  75.         memset(map,0,sizeof(map));    
  76.         memset(vis,0,sizeof(vis));    
  77.         for(i = 0;i<a;i++)    
  78.         for(j = 0;j<b;j++)    
  79.         for(k = 0;k<c;k++)    
  80.         scanf("%d",&map[i][j][k]);    
  81.         ans = bfs(0,0,0);    
  82.         printf("%d\n",ans);    
  83.     }    
  84.     
  85.     return 0;    
  86. }    

题目 B: 表达式求值

时间限制: 3 Sec  内存限制: 6 MB

题目描述

实现输入一个表达式求出它的值的计算器,比如输入:“1+2/4=”,程序就输出1.50(结果保留两位小数)

输入

第一行输入一个整数n,共有n组测试数据(n<10)。 每组测试数据只有一行,是一个长度不超过1000的字符串,表示这个运算式,每个运算式都是以“=”结束。这个表达式里只包含+-*/与小括号这几种符号。其中小括号可以嵌套使用。数据保证输入的操作数中不会出现负数。 数据保证除数不会为0

输出

每组都输出该组运算式的运算结果,输出结果保留两位小数。

样例输入

2
1.000+2/4=
((1+2)*5+1)/4=

样例输出

1.50
4.00

  1. #include <stdio.h>    
  2. #include <stdlib.h>    
  3. #include <string.h>    
  4. #include <math.h>    
  5. #include <stack>    
  6. using namespace std;    
  7. stack<char> osta;//定义一个char类型的字符栈    
  8. stack<double> dsta;//定义一个double类型的数据栈    
  9. int main()    
  10. {    
  11.     int T;    
  12.     scanf("%d",&T);    
  13.     while(T--)    
  14.     {    
  15.         char s[1030];    
  16.         scanf("%s",&s[1]);//从下标1开始读入    
  17.         int len=strlen(&s[1]);    
  18.         s[0]='(';s[len]=')';//把读入的表达式左端用“(”括起来,右端的等号换成“)”    
  19.         for(int i=0;i<=len;i++)    
  20.         {    
  21.             if(s[i]=='(')    
  22.                 osta.push(s[i]);//是左括号则压入字符栈中    
  23.             else if(s[i]>='0'&&s[i]<='9')    
  24.             {    
  25.                 int b,K=0;    
  26.                 double v=0;    
  27.                 while(s[i]>='0'&&s[i]<='9'||s[i]=='.')    
  28.                 {    
  29.                     if(s[i]=='.')//判断是否是小数点    
  30.                     {    
  31.                         b=i;//记录小数点的位置    
  32.                         K=1;//标记    
  33.                     }    
  34.                     else    
  35.                         v=v*10+s[i]-'0';    
  36.                     i++;    
  37.                 }    
  38.                 i--;    
  39.                 if(K==1)    
  40.                     dsta.push(v/pow(10,i-b));    
  41.                 else    
  42.                     dsta.push(v);    
  43.             }    
  44.             else if(s[i]=='+'||s[i]=='-')    
  45.             {    
  46.                 while(osta.top()!='(')//判断栈顶元素,同下    
  47.                 {    
  48.                     double a=dsta.top();dsta.pop();    
  49.                     double b=dsta.top();dsta.pop();    
  50.                     double c;    
  51.                     switch(osta.top())    
  52.                     {    
  53.                         case '+':c=b+a;break;    
  54.                         case '-':c=b-a;break;    
  55.                         case '*':c=b*a;break;    
  56.                         case '/':c=b/a;break;     
  57.                     }    
  58.                     dsta.push(c);    
  59.                     osta.pop();    
  60.                 }    
  61.                 osta.push(s[i]);    
  62.             }    
  63.             else if(s[i]=='*'||s[i]=='/')    
  64.             {    
  65.                 if(osta.top()=='*')    
  66.                 {    
  67.                     double a=dsta.top();dsta.pop();    
  68.                     double b=dsta.top();dsta.pop();    
  69.                     dsta.push(b*a);    
  70.                     osta.pop();    
  71.                 }    
  72.                 else if(osta.top()=='/')    
  73.                 {    
  74.                     double a=dsta.top();dsta.pop();    
  75.                     double b=dsta.top();dsta.pop();    
  76.                     dsta.push(b/a);    
  77.                     osta.pop();    
  78.                 }    
  79.                 osta.push(s[i]);    
  80.             }    
  81.             else if(s[i]==')')    
  82.             {    
  83.                 while(osta.top()!='(')    
  84.                 {    
  85.                     double a=dsta.top();dsta.pop();    
  86.                     double b=dsta.top();dsta.pop();    
  87.                     double c;    
  88.                     switch(osta.top())    
  89.                     {    
  90.                         case '+':c=b+a;break;    
  91.                         case '-':c=b-a;break;    
  92.                         case '*':c=b*a;break;    
  93.                         case '/':c=b/a;break;    
  94.                     }    
  95.                     dsta.push(c);    
  96.                     osta.pop();    
  97.                 }    
  98.                 osta.pop();    
  99.             }    
  100.         }    
  101.         printf("%.2lf\n",dsta.top());    
  102.         dsta.pop();//弹出最后数据,以免影响下一次运算    
  103.     }    
  104.     return 0;    
  105. }    

题目 C:Train

时间限制: 1 Sec  内存限制: 33 MB

题目描述

As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because the trains in the Ignatius Train Station is the fastest all over the world ^v^). But here comes a problem, there is only one railway where all the trains stop. So all the trains come in from one side and get out from the other side. For this problem, if train A gets into the railway first, and then train B gets into the railway before train A leaves, train A can't leave until train B leaves. The pictures below figure out the problem. Now the problem for you is, there are at most 9 trains in the station, all the trains has an ID(numbered from 1 to n), the trains get into the railway in an order O1, your task is to determine whether the trains can get out in an order O2.


输入

The input contains several test cases. Each test case consists of an integer, the number of trains, and two strings, the order of the trains come in:O1, and the order of the trains leave:O2. The input is terminated by the end of file. More details in the Sample Input.


输出

The output contains a string "No." if you can't exchange O2 to O1, or you should output a line contains "Yes.", and then output your way in exchanging the order(you should output "in" for a train getting into the railway, and "out" for a train getting out of the railway). Print a line contains "FINISH" after each test case. More details in the Sample Output.

样例输入

3 123 321
3 123 312

样例输出

Yes.
in
in
in
out
out
out
FINISH
No.
FINISH
  1. #include<iostream>    
  2. #include<stack>    
  3. #define max 100    
  4. using namespace std;    
  5. int main()    
  6. {    
  7.     stack<char>s;    
  8.     int n,i,j,k,result[max];//n为列车个数, result数组用来表示结果,1表示进栈。0表示出    
  9.     char str1[max],str2[max];//序列1和序列2    
  10.     while(cin>>n>>str1>>str2)    
  11.     {    
  12.         j=0,i=0,k=1;    
  13.         s.push(str1[0]);//为防止栈空,压一个进去    
  14.         result[0]=1;//记录进来了一个。    
  15.         while(i<n&&j<n)    
  16.         {    
  17.             if(s.size()&&s.top()==str2[j])    
  18.             {//如果栈顶元素与序列2当前的元素相等,str2向后移一位 ,然后把str1放在栈里边的元素弹出来。    
  19.                 j++;    
  20.                 s.pop();    
  21.                 result[k++]=0;    
  22.             }    
  23.             else    
  24.             {//栈顶元素跟str2当前的元素不一样的时候就把str1中的元素再压栈。    
  25.                 /**   
  26.                  *  i == n-1 的时候也已经全部压栈过一次了 当 i == n的时候就说明不匹配   
  27.                  */    
  28.                 if(i==n)    
  29.                     break;    
  30.                 s.push(str1[++i]);    
  31.                 result[k++]=1;    
  32.             }    
  33.         }    
  34.         if(i==n)    
  35.         {//如果I==N表示栈顶元素不等于序列2当前元素,且序列1中元素都已经入过栈,判断不能得到序列2一样的答案。    
  36.             cout<<"No."<<endl;    
  37.         }    
  38.         else    
  39.         {//输出进出栈方式    
  40.             cout<<"Yes."<<endl;    
  41.             for(i=0; i<k; i++)    
  42.                 if(result[i])    
  43.                     cout<<"in"<<endl;    
  44.                 else    
  45.                     cout<<"out"<<endl;    
  46.         }    
  47.         cout<<"FINISH"<<endl;    
  48.     }    
  49.     return 0;    
  50. }    

题目 D: 情报分析

时间限制: 1 Sec  内存限制: 12 MB

题目描述

“八一三”淞沪抗战爆发后,*几次准备去上海前线视察和指挥作战。但都因为宁沪之间的铁路和公路遭到了敌军的严密封锁,狂轰滥炸,一直未能成行。 特科组织,其主要任务是保卫的安全,了解和掌握敌方的动向。经过一段时间的监听,谍报组获取了敌方若干份密报,经过分析,发现密文中频繁出现一些单词,情报人员试图从单词出现的次数中,推出敌军的行动计划。 请你编程,快速统计出频率高的前十个单词。


输入

密文是由英语单词(小写字母)组成,有若干段。单词之间由一个或多个空格分开,自然段之后可以用一个“,”或“。”表示结束。整个内容的单词数量不超过10000,不同的单词个数不超过500.

输出

输出占10行,每行一个单词及出现的次数,中间一个空格。要求按频率降序输出,出现次数相同的单词,按字典序输出。

样例输入

shooting is at shanghai station. shooting must 
be carried out. shooting shooting. 
shanghai station must be surrounded, at least a team of one hundred soldiers to fight. twenty five soldiers shooting in the north, twenty five soldiers shooting in the south, twenty five soldiers shooting in the east, twenty five soldiers shooting in the west. 

样例输出

shooting 8 
soldiers 5 
five 4 
in 4 
the 4 
twenty 4 
at 2 
be 2 
must 2 
shanghai 2 
  1. #include <algorithm>    
  2. #include <iostream>    
  3. #include <string>    
  4. #include <map>    
  5. #include<cstring>   
  6. #include <cstdio>    
  7.   
  8. using namespace std;    
  9. struct node//定义结构体存放各个单词的情况    
  10. {    
  11.     char str[100];    
  12.     int count;    
  13. }word[1000];    
  14. int N=0;    
  15. int cmp(node w1,node w2)    
  16. {    
  17.     if(w1.count!=w2.count)//比较出现数目的多少,大者在前,小者在后    
  18.         return w1.count>w2.count;    
  19.     else//如果出现数目相等,按照字典序排序    
  20.     {    
  21.         int a=strcmp(w1.str,w2.str);    
  22.         if(a>0)    
  23.             return 0;    
  24.         else    
  25.             return 1;    
  26.     }    
  27. }    
  28. int main()    
  29. {    
  30.     map <string,int> m;//定义map来接收并记录输入的数据    
  31.     map <string,int>::iterator it;//定义迭代器    
  32.     char str[100];    
  33.     while(scanf("%s",str)!=EOF)    
  34.     {    
  35.         int len=strlen(str);    
  36.         if(str[len-1]==','||str[len-1]=='.')//如果末尾字符是','或'.',将其清除    
  37.             str[len-1]='\0';    
  38.         string s=str;    
  39.         m[s]++;//将此单词出现的次数++    
  40.     }    
  41.     for(it=m.begin(); it!=m.end(); it++)    
  42.     {    
  43.         string s=(*it).first;    
  44.         int count=(*it).second;    
  45.         strcpy(word[N].str,s.c_str());    
  46.         word[N++].count=count;//将map中存放的数据放入结构体中    
  47.     }    
  48.     sort(word,word+N,cmp);//将结构体排序    
  49.     for(int i=0; i<10; i++)//输出前10个元素    
  50.     {    
  51.         printf("%s %d\n",word[i].str,word[i].count);    
  52.     }    
  53.     return 0;    
  54. }  

题目E: Information Sharing

时间限制: 3 Sec  内存限制: 65 MB

题目描述

There is going to be a test in the kindergarten. Since the kids would cry if they get a low score in the test, the teacher has already told every kid some information about the test in advance. But the kids are not satisfied with the information teacher gave. They want to get more. On the testing day, some kids arrived to the classroom early enough, and then shared his/her information with another. kids are honest, if A shares with B, B can get all the information A knows, so does A. At first the classroom is empty. As time pass by, a kid would arrive, or share information with other. However, the teacher hides somewhere, watching everything. She wants to know how much information some kid has gotten.


输入

There are multiple cases. The first line of each case contains an integer n, indicating there is n actions. The following n actions contain 3 types. 1: "arrive Name m a1 a2 ..am", means the kid called Name arrives at the classroom. He has m information, their id is a1 a2 ...am. 2: "share Name1 Name2", means that the kids called Name1 and Name2 share their information. (The sharing state will keep on, that means, if A share with B, later B share with C, A can also get all C's information via B. One kid may share with himself, but it doesn't mean anything.) 3: "check Name", means teacher wants to know the number of information kid called Name has got. n is less than 100000, and is positive. The information id is among [0,1000000]. Each Name has at most 15 characters. There would appears at most 1000 distinct information. Each kid carry no more than 10 information when arriving(10 is included).

输出

For every "check" statement, output a single number. If there's no check statement, don't output anything.

样例输入

8
arrive FatSheep 3 4 7 5
arrive riversouther 2 4 1
share FatSheep riversouther
check FatSheep
arrive delta 2 10 4
check delta
share delta FatSheep
check riversouther

样例输出

4
2
5

提示

check 1: FatSheep has 1 4 5 7, having all the information. So answer is 4.
check 2: delta has only 4 10 , doesn't have 1 5 7. So answer is 2
check 3: riversouther has 1 4 5 7 10, having all the information. So answer is 5

  1. #include <stdio.h>    
  2. #include <set>    
  3. #include <map>    
  4. #include <string.h>    
  5. #include <string>    
  6.     
  7. using namespace std;    
  8. int fa[100005];    
  9. set <int>   s[100005];    
  10. map <string,int>   m;    
  11.     
  12. int main(){    
  13.     int n,countn;    
  14.     int i,j,q;    
  15.     char command[20],str2[20],str3[20];    
  16.     
  17.     while(scanf("%d",&n) != EOF){    
  18.         for(i = 0;i < 100005;i++){    
  19.             fa[i] = i;    
  20.             s[i].clear();    
  21.         }    
  22.         m.clear();    
  23.         countn = 0;    
  24.         while(n--){    
  25.             scanf("%s",command);    
  26.             if(command[0] == 'a'){    
  27.                 scanf("%s",str2);    
  28.                 m[str2] = countn;    
  29.                 scanf("%d",&q);    
  30.                 while(q--){    
  31.                     int tem;    
  32.                     scanf("%d",&tem);    
  33.                     s[countn].insert(tem);    
  34.                 }    
  35.                 countn++;    
  36.             }    
  37.             else if(command[0] == 'c'){    
  38.                 scanf("%s",str2);    
  39.                 int p = m[str2];    
  40.                 while(fa[p] != p)    
  41.                     p = fa[p];    
  42.                 m[str2] = p;    
  43.                 printf("%d\n",s[p].size());//集合的大小,即是所求的答案    
  44.             }    
  45.             else{    
  46.                 scanf("%s%s",str2,str3);    
  47.                 int p2 = m[str2];    
  48.                 int p3 = m[str3];    
  49.                 while(fa[p2] != p2)    
  50.                     p2 = fa[p2];    
  51.                 while(fa[p3] != p3)    
  52.                     p3 = fa[p3];    
  53.                 if(p2 == p3)    //这一个地方很重要,如果这两个是同一个集合,    
  54.                     continue;   //就不要再进行下面的操作,否则会出错    
  55.                 while(!s[p2].empty()){    
  56.                     int tem = *s[p2].begin();    
  57.                     s[p3].insert(tem);    
  58.                     //如果集合中已经存在tem,则这个插入操作是无效的    
  59.                     //就是利用这条性质来求集合的并集    
  60.                     s[p2].erase(tem);    
  61.                 }    
  62.                 m[str2] = p3;    
  63.                 m[str3] = p3;    
  64.                 fa[p2] = p3;    
  65.             }    
  66.         }    
  67.     }    
  68.   

题目 F: The Intervals

时间限制: 2 Sec  内存限制: 65 MB

题目描述

Cantor, the famous mathematician, was working on a problem about intervals. Let's start from a line segment of unit length. Remove its middle 1/3. Now remove the middle 1/3's from the remaining two segments. Now remove the middle 1/3's from the remaining four segments. Now remove the middle 1/3's from the remaining eight segments. Now remove ... well, you get the idea. If you could continue this procedure through infinitely many steps, what would you have left? Now he assigns the following task to you. (He asked me to pass his assignment to you last night.) Given two arrays of numbers {A(n)} and {B(m)}. For each B(i) in {B(m)}, find 2 numbers a and b from {A(n)}, such that B(i) is in [a,b) and b-a<=|b'-a'| for all a' and b' from {A(n)} such that [a',b') contains B(i).


输入

There are several test cases. In each test case, the first line gives n and m. The second line contains n numbers, which are the elements of {A(n)}. The third line contains m nubmers, which are the elements of {B(m)}.

输出

For each B(i) in {B(m)}, output a line containing the interval [a,b). If there is no such interval, output "no such interval" instead. Print a blank line after each test case.

样例输入

3 3
10 20 30
15 25 35

样例输出

[10,20)
[20,30)
no such interval
  1. #include<iostream>    
  2. using namespace std;    
  3. #include<algorithm>    
  4.     
  5. int n,m;    
  6.     
  7. int find(int *a,int x)    
  8. {    
  9.     if(x<a[0] || a[n-1]<=x)return -1;    
  10.     return  lower_bound(a,a+n,x)-a;    
  11. }    
  12.     
  13. int main()    
  14. {    
  15.     int a[10001];    
  16.     while(cin>>n>>m)    
  17.     {    
  18.         int i,j;    
  19.         for(i=0;i<n;i++)    
  20.             cin>>a[i];    
  21.         sort(a,a+n);    
  22.         for(i=0;i<m;i++)    
  23.         {    
  24.             int b;    
  25.             cin>>b;    
  26.             j=find(a,b);    
  27.             if(a[j]!=b)j=j-1;    
  28.             if(j>=0)    
  29.             cout<<"["<<a[j]<<","<<a[j+1]<<")"<<endl;    
  30.             else    
  31.                 cout<<"no such interval\n";    
  32.         }    
  33.          
  34.     }    
  35.     return 0;    
  36.    

题目G: 懒省事的小名

时间限制: 1 Sec  内存限制: 12 MB

题目描述

小名总结了一个英语近义词的词典(很厚哦,有多厚,你猜),词典实在太厚了,你需要帮助他写一个程序,输入一个单词,输出它的近义词


输入

第一行输入近义词的个数N和小名要查询的行数M

接下来N行为近义词对

M行单词,根据单词,输出它的近义词


输出

输出近义词,每个近义词占一行

样例输入

2 2
abc	cba
aaa	bbb
abc
aaa

样例输出

cba
bbb

  1. #include<iostream>  
  2. #include<map>  
  3. #include<cstring>  
  4. #include<string>  
  5. #include<algorithm>  
  6. using namespace std;  
  7. int main()  
  8. {  
  9.     int N, M;  
  10.     string a, b,c;  
  11.     map<string, string> mp;  
  12.     while(scanf("%d%d",&N,&M)!=EOF){  
  13.         for(int i = 0; i < N; i++)  
  14.         {  
  15.             cin>>a>>b;  
  16.             mp[a] = b;  
  17.         }  
  18.         for(int i = 0; i < M; i++)  
  19.         {  
  20.             cin>>c;  
  21.             map<string,string>::iterator it;  
  22.             for(it=mp.begin();it!=mp.end();it++)  
  23.             {  
  24.                 if(it->first == c)   
  25.                 {  
  26.                     cout<<it->second<<endl;  
  27.                     break;  
  28.                 }else if(it->second == c){  
  29.                     cout<<it->first<<endl;  
  30.                     break;  
  31.                 }                             
  32.             }  
  33.         }  
  34.           
  35.           
  36.     }  
  37.       
  38.  }   





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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值