• 前缀和
  • 二分查找
  • 打表枚举
  • 代码如下
  • import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.StreamTokenizer;
    import java.util.ArrayList;
    import java.util.List; public class Main { public static Integer[] dp(int[] arr, String s,int t,char ch) {
    List<Integer> ans = new ArrayList<>();
    if (arr[0] == t && s.charAt(0) == ch) {
    ans.add(1);
    } else {
    ans.add(0);
    }
    for (int i = 1; i < arr.length; i++) {
    if (arr[i] == t && s.charAt(i) == ch) {
    ans.add(ans.get(i - 1) + 1);
    } else {
    ans.add(ans.get(i - 1));
    }
    }
    return ans.toArray(new Integer[ans.size()]);
    } public static void main(String[] args) throws IOException {
    StreamTokenizer in = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));
    in.nextToken();
    int n = (int) in.nval;
    int[] arr = new int[n];
    for (int i = 0; i < arr.length; i++) {
    in.nextToken();
    arr[i] = (int) in.nval;
    }
    in.nextToken();
    String s = in.sval;
    Integer[] mlist = build(s, 'M');
    Integer[] elist = build(s, 'E');
    Integer[] xlist = build(s, 'X'); Integer[] hm0 = dp(arr, s,0,'M');
    Integer[] hm1 = dp(arr, s,1,'M');
    Integer[] hm2 = dp(arr,s, 2,'M'); Integer[] hx0 = dp(arr, s,0,'X');
    Integer[] hx1 = dp(arr, s,1,'X');
    Integer[] hx2 = dp(arr,s, 2,'X'); long ans = 0;
    for (int i = 0; i < elist.length; i++) {
    int j = upperlound(mlist, elist[i]);
    int p = upperlound(xlist, elist[i]); if (j == 0) {
    continue;
    }
    if (p == xlist.length) {
    continue;
    }
    j = j - 1; int t = mlist[j]; int x0 = hm0[t];
    int x1 = hm1[t];
    int x2 = hm2[t]; int k = xlist[p]; int y0 = k > 0 ? hx0[n - 1] - hx0[k - 1] : hx0[n - 1];
    int y1 = k > 0 ? hx1[n - 1] - hx1[k - 1] : hx1[n - 1];
    int y2 = k > 0 ? hx2[n - 1] - hx2[k - 1] : hx2[n - 1]; int z = arr[elist[i]]; if (z == 2) {
    ans += 1l*x0*(y0 + y2 + 3 * y1);
    ans += 3l*x1*y0;
    ans += 1l* x2*y0;
    }
    else if( z == 1){
    ans += 1l*x0*(2*y0+2*y1+3*y2);
    ans += 2l*x1*y0;
    ans += 3l*x2*y0;
    }
    else{
    ans += 1l*x0*(y0+2*y1+y2);
    ans += 1l*x1*(2*y0+2*y1+3*y2);
    ans += 1l*x2*(y0+3*y1+y2);
    } } System.out.println(ans);
    } /**
    * @param arr
    * @param value
    * @return 》 value的第一个坐标位置,如果不存在,那么就是arr.length;
    */
    public static int upperlound(Integer[] arr, int value) {
    int low = 0;
    int high = arr.length;
    while (low < high) {
    int mid = low + (high - low) / 2;
    if (arr[mid] <= value) {
    low = mid + 1;
    } else {
    high = mid;
    }
    }
    return low;
    } public static Integer[] build(String str, char ch) {
    List<Integer> list = new ArrayList<>();
    for (int i = 0; i < str.length(); i++) {
    if (str.charAt(i) == ch) {
    list.add(i);
    }
    }
    return list.toArray(new Integer[list.size()]);
    } }

【atcoder beginner 308E - MEX】的更多相关文章

  1. 【AtCoder Beginner Contest 181】A~F题解

    越学越菜系列 于2020.11.2,我绿了(错乱) A - Heavy Rotation 签到题,奇数Black,偶数White. code: #include<bits/stdc++.h> ...

  2. 【AtCoder Beginner Contest 074 D】Restoring Road Network

    [链接]h在这里写链接 [题意] 给你任意两点之间的最短路. 让你求出原图. 或者输出原图不存在. 输出原图的边长总和的最小值. [题解] floyd算法. 先在原有的矩阵上. 做一遍floyd. 如 ...

  3. 【AtCoder Beginner Contest 074 C】Sugar Water

    [链接]h在这里写链接 [题意] 让你在杯子里加糖或加水. (4种操作类型) 糖或水之间有一定关系. 糖和水的总量也有限制. 问你糖水浓度的最大时,糖和糖水的量. [题解] 写个dfs就好. 每次有4 ...

  4. 【AtCoder Beginner Contest 074 B】Collecting Balls (Easy Version)

    [链接]h在这里写链接 [题意] 看懂题目之后就会发现是道大水题. [题解] 在这里写题解 [错的次数] 0 [反思] 在这了写反思 [代码] #include <bits/stdc++.h&g ...

  5. 【AtCoder Beginner Contest 074 A】Bichrome Cells

    [链接]h在这里写链接 [题意] 在这里写题意 [题解] 在这里写题解 [错的次数] 0 [反思] 在这了写反思 [代码] #include <bits/stdc++.h> using n ...

  6. 【AtCoder Regular Contest 082】Derangement

    [链接]点击打开链接 [题意] 在这里写题意 [题解] 贪心. 连续一块的p[i]==i的话,对答案的贡献就应该为(这个连续块的长度+1)/2; 长度为1的也正确. (也即两两相邻的互换位置.) [错 ...

  7. 【AtCoder ABC 075 D】Axis-Parallel Rectangle

    [链接] 我是链接,点我呀:) [题意] 让你找到一个各边和坐标轴平行的矩形.使得这个矩形包含至少K个点. 且这个矩形的面积最小. [题解] 把所有的"关键点""都找出来 ...

  8. 【AtCoder ABC 075 C】Bridge

    [链接] 我是链接,点我呀:) [题意] 让你求出桥的个数 [题解] 删掉这条边,然后看看1能不能到达其他所有的点就可以了 [代码] #include <bits/stdc++.h> us ...

  9. 【AtCoder ABC 075 B】Minesweeper

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 模拟,把#换成1 八个方向加一下就好. [代码] #include <bits/stdc++.h> using name ...

  10. 【AtCoder ABC 075 A】One out of Three

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 用map轻松搞定 [代码] #include <bits/stdc++.h> using namespace std; ...

随机推荐

  1. (python)每日代码||2024.2.2||python当中,True==1竟然引发了问题

    做题的时候有的测试点里竟然用True替换1,骗过了我的代码,结果没过测试点 lst = [1, True] for item in lst: if not isinstance(item, bool) ...

  2. Mac 上 snail svn 配置验证信息

    这样就不用每次都得输入svn的账号 和 密码了

  3. 《ASP.ENT Core 与 RESTful API 开发实战》-- 读书笔记(第2章)

    第 2 章 .NET Core 和 ASP.NET Core 2.1 .NET Core 简介 .NET Core 是一个通用的开发平台,最重要的特点是跨平台,同时也是一个开源平台 .NET Core ...

  4. 麒麟V10虚拟机安装(详细)

    现在国企和央企单位都在做国产化适配工作,服务器采用:中科曙光(海光Hygon).中科德泰(龙芯Loongson).宝德(鲲鹏Kunpeng)等国产配备国产处理器的服务器:数据库采用:人大金仓(King ...

  5. 机器学习基础03DAY

    特征降维 降维 PCA(Principal component analysis),主成分分析.特点是保存数据集中对方差影响最大的那些特征,PCA极其容易受到数据中特征范围影响,所以在运用PCA前一定 ...

  6. .net core微服务之网关

    网关: 一:apisix doc:https://apisix.apache.org/zh/docs/apisix/getting-started/README/ github:https://git ...

  7. Java官方文档

    https://www.oracle.com/java/technologies/ https://www.oracle.com/java/technologies/downloads/archive ...

  8. BUG管理系统(Mantis)迁移实战

    Mantis迁移实战 名词解释 Mantis:  开源的BUG管理平台Mantis,也做MantisBT.           同档次产品有EasyBUG,QC,BugFree,Bugzila. Xa ...

  9. Oracle代码封装工具和DBMS_DDL包的使用

    The WRAP Utility and the DBMS_DDL Package On occasion it is necessary to hide (obfuscate) your PL/SQ ...

  10. centos上使用makefile编译sliver时 提示gcc 错误,cannot find -ldl cannot find -lpthread cannot find -lc

    github.com/bishopfox/sliver/server /usr/local/go/pkg/tool/linux_amd64/link: running gcc failed: exit ...