2018年湖南省第十四届大学生计算机程序设计竞赛

目录

  • 题目链接
  • 题目
    • A题

      • 思路
      • 代码
    • B题
      • 思路
      • 代码
    • C题
      • 思路
      • 代码
    • E题
      • 思路
      • 代码
    • H题
      • 思路
      • 代码
    • J题
      • 思路
      • 代码
    • K题
      • 思路
      • 代码

题目链接

传送门

题目

A题

思路

签到。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("D://Code//in.txt","r",stdin)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 200000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

int n;

int main() {
    scanf("%d", &n);
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo\n");
    printf("..o");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("o.o");
    for(int i = 1; i <= n; ++i) printf(".");
    printf(".o.");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("o.o\n");
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("o.o");
    for(int i = 1; i <= n; ++i) printf(".");
    printf(".o.");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo\n");
    printf("o..");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("o.o");
    for(int i = 1; i <= n; ++i) printf(".");
    printf(".o.");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("o.o\n");
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo");
    for(int i = 1; i <= n; ++i) printf(".");
    printf("ooo\n");
    return 0;
}

B题

思路

打表找规律。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("/home/dillonh/CLionProjects/Dillonh/in.txt","r",stdin)
#define IO ios::sync_with_stdio(false),cin.tie(0)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 200000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

int n, m;
int C[4007][2007];

int main() {
#ifndef ONLINE_JUDGE
    FIN;
#endif
    for(int i = 0; i <= 4000; ++i) {
        C[i][0] = 1;
        for(int j = 1; j <= min(i, 2000); ++j) {
            C[i][j] = (C[i-1][j] + C[i-1][j-1]) % mod;
        }
    }
    while(~scanf("%d%d", &n, &m)) {
        printf("%lld\n", 1LL * (C[n+m][m] - 1) * (C[n+m][m] - 1) % mod);
    }
    return 0;
}

C题

思路

看样例猜。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("/home/dillonh/CLionProjects/Dillonh/in.txt","r",stdin)
#define IO ios::sync_with_stdio(false),cin.tie(0)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 200000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

int h, c;

int main() {
    while(~scanf("%d%d", &h, &c)) {
        printf("%d\n", h > c ? h : c + 1);
    }
    return 0;
}

E题

思路

初始时联通快有\(n\times m\)个,由于在每次进行操作之后重新数联通块比较复杂,因此我们可以将思路转换一下,变成每次操作后联通块减少了\(x\),那么答案就是\(n\times m-x\)。

我们可以发现每次增加一条新的横线(前面没有对这一行进行操作)后联通块减少了\(m-1\)个,每次增加一条竖线后联通块减少了\(n-1\)个。

我们假设横线数目为\(h\),竖线数目为\(w\),那么当只有横线时答案为\(n\times m-h\times(m-1)\),当只有竖线时答案为\(n\times m-w\times(n-1)\)。当既有横线又有竖线时需要稍微容斥一下,因为对于交叉点我们会重复减掉,因此需要加回来,被重复减掉部分为\((h-1)\times(w-1)\),此时答案为\(n\times m-h\times(m-1)-w\times(n-1)+(h-1)\times(w-1)\)。

注意同一行被操作多次只能被算一次,因此我们可以考虑用左闭右开线段树来维护。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("D://Code//in.txt","r",stdin)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 200000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

bool lazy[3][maxn<<2];
int n, m, q, cnt;
int op[maxn], l[maxn], r[maxn], sum[3][maxn<<2], num[maxn*2];

void push_down(int rt, int l, int r, int id) {
    if(!lazy[id][rt]) return;
    lazy[id][rt] = 0;
    lazy[id][lson] = lazy[id][rson] = 1;
    int mid = (l + r) >> 1;
    sum[id][lson] = num[mid+1] - num[l];
    sum[id][rson] = num[r+1] - num[mid+1];
}

void push_up(int rt, int id) {
    sum[id][rt] = sum[id][lson] + sum[id][rson];
}

void build(int rt, int l, int r) {
    for(int i = 0; i < 2; ++i) sum[i][rt] = 0, lazy[i][rt] = false;
    if(l == r) return;
    int mid = (l + r) >> 1;
    build(lson, l, mid), build(rson, mid + 1, r);
}

void update(int rt, int l, int r, int L, int R, int id) {
    if(l == L && r == R) {
        sum[id][rt] = num[R+1] - num[L];
        lazy[id][rt] = true;
        return;
    }
    push_down(rt, l, r, id);
    int mid = (l + r) >> 1;
    if(R <= mid) update(lson, l, mid, L, R, id);
    else if(L > mid) update(rson, mid + 1, r, L, R, id);
    else {
        update(lson, l, mid, L, mid, id);
        update(rson, mid + 1, r, mid + 1, R, id);
    }
    push_up(rt, id);
}

int getnum(int x) {
    return lower_bound(num + 1, num + cnt + 1, x) - num;
}

int main() {
#ifndef ONLINE_JUDGE
    FIN;
#endif
    while(~scanf("%d%d%d", &n, &m, &q)) {
        cnt = 0;
        for(int i = 1; i <= q; ++i) {
            scanf("%d%d%d", &op[i], &l[i], &r[i]);
            num[++cnt] = l[i], num[++cnt] = r[i] + 1;
        }
        sort(num + 1, num + cnt + 1);
        cnt = unique(num + 1, num + cnt + 1) - num - 1;
        build(1, 1, cnt);
        for(int i = 1; i <= q; ++i) {
            l[i] = getnum(l[i]), r[i] = getnum(r[i]+1);
            if(op[i] == 1) {
                update(1, 1, cnt, l[i], r[i]-1, 0);
            } else {
                update(1, 1, cnt, l[i], r[i]-1, 1);
            }
            // printf("[%d %d]\n", sum[0][1], sum[1][1]);
            LL ans = 1LL * n * m - 1LL * sum[0][1] * (m - 1) - 1LL * sum[1][1] * (n - 1);
            if(sum[0][1] && sum[1][1]) ans += 1LL * (sum[0][1] - 1) * (sum[1][1] - 1);
            printf("%lld\n", ans);
        }
    }
    return 0;
}

H题

思路

由于查询时保证\(r-l\leq 2\),因此我们可以用三个树状数组分别存下以\(i\)为左端点,区间长度为\(0,1,2\)的区间被哪些区间覆盖过。

插入时对于\([l,r]\)的每个数作为左端点区间长度为\(0\)的均有被覆盖,\([l,r-1]\)为左端点区间长度为\(1\)的均有被覆盖,\([l,r-2]\)为左端点区间长度为\(2\)的均有被覆盖,分别进行\(update\)即可。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("/home/dillonh/CLionProjects/Dillonh/in.txt","r",stdin)
#define IO ios::sync_with_stdio(false),cin.tie(0)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 100000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

inline int read() {
    int f = 0, x = 0;
    char ch = getchar();
    while (ch < '0' || ch > '9') f |= (ch == '-'), ch = getchar();
    while (ch >= '0' && ch <= '9') x = (x << 3) + (x << 1) + ch - '0', ch = getchar();
    return x = f ? -x : x;
}

int n, q, op, l, r;
int tree[5][maxn];

void bit_add(int x, int id, int val) {
    while(x <= n) {
        tree[id][x] += val;
        x += lowbit(x);
    }
}

int bit_query(int x, int id) {
    int ans = 0;
    while(x) {
        ans += tree[id][x];
        x -= lowbit(x);
    }
    return ans;
}

int main() {
#ifndef ONLINE_JUDGE
    FIN;
#endif
    while(~scanf("%d%d", &n, &q)) {
        for(int i = 0; i <= 2; ++i) {
            for(int j = 0; j <= n; ++j) tree[i][j] = 0;
        }
        while(q--) {
            op = read(), l = read(), r = read();
            if(op == 1) {
                bit_add(l, 0, 1);
                bit_add(r + 1, 0, -1);
                if(l <= r - 1) {
                    bit_add(l, 1, 1);
                    bit_add(r, 1, -1);
                }
                if(l <= r - 2) {
                    bit_add(l, 2, 1);
                    bit_add(r - 1, 2, -1);
                }
            } else {
                printf("%d\n", bit_query(l, r-l));
            }
        }
    }
    return 0;
}

J题

思路

我们考虑当前\(dfs\)到结点\(u\),从\(1\)到\(u\)的父亲结点得到的答案为\(sum\),那么\(f_u=sum+u\)的贡献。

当\(a[u]\)在\(1\)到\(u\)这条链上是第一次出现时,此时\(u\)的贡献为这条链上不同数的个数;

当\(a[u]\)是第二次出现时,此时\(u\)的贡献为上一次\(a[u]\)出现位置到\(u\)的路径上不同数的个数\(+1\),这个\(1\)表示的有序对是\((a[u],a[u])\)。

当\(a[u]\)出现次数大于\(2\)时,此时\(u\)的贡献为上一次\(a[u]\)出现位置到\(u\)的路径上不同数的个数。

在回溯的时候记得清除\(u\)造成的影响。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("/home/dillonh/CLionProjects/Dillonh/in.txt","r",stdin)
#define IO ios::sync_with_stdio(false),cin.tie(0)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 200000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

int ans[maxn], sum;
int n, u, tot, cnt;
int head[maxn], a[maxn], vis[maxn], lst[maxn];

struct edge {
    int v, next;
}ed[maxn*2];

void add(int u, int v) {
    ed[tot].v = v;
    ed[tot].next = head[u];
    head[u] = tot++;
}

void dfs(int u) {
    int tmp = 0;
    if(!vis[a[u]]) tmp = cnt, ++cnt;
    else if(vis[a[u]] == 1) tmp = cnt - lst[a[u]] + 1;
    else tmp = cnt - lst[a[u]];
    ans[u] = sum + tmp;
    int pp = lst[a[u]];
    lst[a[u]] = cnt;
    sum += tmp;
    ++vis[a[u]];
    for(int i = head[u]; ~i; i = ed[i].next) {
        int v = ed[i].v;
        dfs(v);
    }
    sum -= tmp;
    --vis[a[u]];
    if(vis[a[u]] == 0) --cnt;
    lst[a[u]] = pp;
}

int main() {
    while(~scanf("%d", &n)) {
        tot = cnt = sum = 0;
        assert(n >= 1 && n <= 100000);
        for(int i = 1; i <= n; ++i) vis[i] = ans[i] = lst[i] = 0, head[i] = -1;
        for(int i = 2; i <= n; ++i) {
            scanf("%d", &u);
            assert(u >= 1 && u <= n && u != i);
            add(u, i);
        }
        for(int i = 1; i <= n; ++i) {
            scanf("%d", &a[i]);
            assert(a[i] >= 1 && a[i] <= n);
        }
        dfs(1);
        for(int i = 2; i <= n; ++i) printf("%d\n", ans[i]);
    }
    return 0;
}

K题

思路

我们将\(a\)做个前缀和,然后考虑每个\(b\)的贡献即可。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("D://Code//in.txt","r",stdin)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 500000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

int n, m, L, R;
LL sum[maxn], a[maxn], b[maxn];

int main() {
    while (~scanf("%d%d%d%d", &n, &m, &L, &R)) {
        L += 2, R += 2;
        sum[0] = 0;
        for (int i = 1; i <= n + 1; i++) scanf("%lld", &a[i]), sum[i] = sum[i - 1] + a[i];
        for (int i = 1; i <= m + 1; i++) scanf("%lld", &b[i]);
        LL ans = 0;
        for (int i = 1; i <= m + 1; i++) {
            int l = max(1, L - i), r = min(n + 1, R - i);
            if (l > n + 1 || r < 1) continue;
            ans = (ans + 1LL * b[i] * ((sum[r] - sum[l - 1] + mod) % mod) % mod) % mod;
        }
        printf("%lld\n", ans);
    }
    return 0;
}

原文地址:https://www.cnblogs.com/Dillonh/p/11621180.html

时间: 2024-11-06 23:50:07

2018年湖南省第十四届大学生计算机程序设计竞赛的相关文章

湖南省第十届大学生计算机程序设计竞赛:酷酷的单词

1505: 酷酷的单词 Time Limit: 1 Sec Memory Limit: 128 MB Submit: 237 Solved: 88 [Submit][Status][Web Board] Description 输入一些仅由小写字母组成的单词.你的任务是统计有多少个单词是"酷"的,即每种字母出现的次数都不同. 比如ada是酷的,因为a出现2次,d出现1次,而1和2不同.再比如,banana也是酷的,因为a出现3次,n出现2次,b出现1次.但是,bbacccd不是酷的,因

湖南省第九届大学生计算机程序设计竞赛 高桥和低桥

高桥和低桥 Time Limit: 1 Sec  Memory Limit: 128 MB Submit: 358  Solved: 60 Description 有个脑筋急转弯是这样的:有距离很近的一高一低两座桥,两次洪水之后高桥被淹了两次,低桥却只被淹了一次,为什么?答案是:因为低桥太低了,第一次洪水退去之后水位依然在低桥之上,所以不算"淹了两次".举例说明: 假定高桥和低桥的高度分别是5和2,初始水位为1 第一次洪水:水位提高到6(两个桥都被淹),退到2(高桥不再被淹,但低桥仍然

湖南省第七届大学生计算机程序设计竞赛 RMQ with Shifts (线段树)

RMQ with Shifts 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述     In the traditional RMQ (Range Minimum Query) problem, we have a static array A. Then for each query (L, R) (L<=R), we report the minimum value among A[L], A[L+1], -, A[R]. Note that the indic

湖南省第七届大学生计算机程序设计竞赛 报数游戏

报数游戏 时间限制:1000 ms  |  内存限制:65535 KB 难度:2 描述     n 个人站成一行玩一个报数游戏.所有人从左到右编号为 1 到 n.游戏开始时,最左边的人报 1,他右边的人报 2,编号为 3 的人报 3,等等.当编号为 n 的人(即最右边的人)报完 n 之后,轮到他左边的人(即编号为n-1 的人)报 n+1,然后编号为 n-2 的人报 n+2,以此类推.当最左边的人再次报数之后,报数方向又变成从左到右,依次类推. 为了防止游戏太无聊,报数时有一个特例:如果应该报的数

湖南省第十三届大学生计算机程序设计竞赛 Football Training Camp 贪心

2007: Football Training Camp[原创-转载请说明] Submit Page   Summary   Time Limit: 1 Sec     Memory Limit: 128 Mb     Submitted: 228     Solved: 30 Description 在一次足球联合训练中一共有n支队伍相互进行了若干场比赛. 对于每场比赛,赢了的队伍得3分,输了的队伍不得分,如果为平局则两支队伍各得1分. Input 输入包含不超过1000组数据. 每组数据的第

湖南省第七届大学生计算机程序设计竞赛 多连块拼图 (模拟)

多连块拼图 时间限制:1000 ms  |  内存限制:65535 KB 难度:4 描述     多连块是指由多个等大正方形边与边连接而成的平面连通图形.         ---- 维基百科 给一个大多连块和小多连块,你的任务是判断大多连块是否可以由两个这样的小多连块拼成.小多连块只能平移,不能旋转或者翻转.两个小多连块不得重叠.左下图是一个合法的拼法,但右边两幅图都非法.中间那幅图的问题在于其中一个小多连块旋转了,而右图更离谱:拼在一起的那两个多连块根本就不是那个给定的小多连块(给定的小多连块

CSU 1330: 字符识别?(字符串模拟啊 湖南省第九届大学生计算机程序设计竞赛)

题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1330 Description 你的任务是写一个程序进行字符识别.别担心,你只需要识别1, 2, 3,如下: .*.  ***  *** .*.  ..*  ..* .*.  ***  *** .*.  *..  ..* .*.  ***  *** Input 输入仅包含一组数据,由6行组成.第一行为字符的个数n(1<=n<=10).以下5行每行包含4n个字符.每个字符恰好占5行3列,

CSU 1336: Interesting Calculator(BFS啊 湖南省第九届大学生计算机程序设计竞赛)

题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1336 1336: Interesting Calculator Description There is an interesting calculator. It has 3 rows of buttons. Row 1: button 0, 1, 2, 3, ..., 9. Pressing each button appends that digit to the end of

CSU 1334: 好老师(数学啊 湖南省第九届大学生计算机程序设计竞赛)

题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1334 Description 我想当一个好老师,所以我决定记住所有学生的名字.可是不久以后我就放弃了,因为学生太多了,根本记不住.但是我不能让我的学生发现这一点,否则会很没面子.所以每次要叫学生的名字时,我会引用离他最近的,我认得的学生.比如有10个学生: A ? ? D ? ? ? H ? ? 想叫每个学生时,具体的叫法是: 位置 叫法 1 A 2 right of A (A右边的同