前言

笔者有的时候无聊,就将一些奇怪的东西封装起来。

范围主要是在\(OI\)或者\(ACM\)中的常见数据结构等。

随着笔者的能力的提升,可能会对原来的封装程序进行修改,并且保留原来的版本。

【ST表(静态RMQ)】

// program at 2019-11-12
template <class T, int N, int M>
struct ST {
  T f[N + 5][M + 1];
  int log2[N];
  T compare(T x, T y) { // can change, depend on the priority of problem
    return x < y ? x : y;
  }
  void init(int* a) {
    log2[0] = -1;
    for (int i = 1; i <= N; i++)
      f[i][0] = a[i], log2[i] = log2[i >> 1] + 1;
    for (int j = 1; j <= M; j++)
      for (int i = 1; i + (1 << j) - 1 <= N; i++)
        f[i][j] = compare(f[i][j - 1], f[i + (1 << (j - 1))][j - 1]);
  }
  T query(int l, int r) {
    int k = log2[r - l + 1];
    return compare(f[l][k], f[r - (1 << k) + 1][k]);
  }
};

高精度

四位压位高精,支持高精加高精、高精减高精(\(a>b\))、高精乘高精、高精乘低精。

// program at 2019-11-14
struct bigint {
  static const int BASE = 10000;
  static const int SIZE = 105
  int len, a[SIZE];
  bigint() {
    memset(a, 0, sizeof a);
    len = 1;
  }
  bigint(long long x) { *this = x; }
  void operator=(int x) {
    len = 0;
    while (x) {
      a[++len] = x % BASE;
      x /= BASE;
    }
  }

  friend bigint operator+(bigint a, bigint b) {
    bigint c;
    c.len = max(a.len, b.len) + 1;
    for (int i = 1, x = 0; i <= c.len; i++)
      c.a[i] = a.a[i] + b.a[i] + x, x = c.a[i] / BASE, c.a[i] %= BASE;
    while (!c.a[c.len]) c.len--;
    return c;
  }

  friend bigint operator-(bigint a, bigint b) {
    a.len = max(a.len, b.len);
    for (int i = 1; i <= a.len; i++) {
      if (a.a[i] < b.a[i])
        a.a[i] += BASE, a.a[i + 1]--;
      a.a[i] -= b.a[i];
    }
    while (!a.a[a.len]) a.len--;
    return a;
  }

  friend bigint operator*(bigint a, bigint b) {
    bigint c;
    c.len = a.len + b.len;
    for (int i = 1; i <= a.len; i++) {
      int x = 0;
      for (int j = 1; j <= b.len; j++)
        c.a[i + j - 1] += a.a[i] * b.a[j] + x, x = c.a[i + j - 1] / BASE, c.a[i + j - 1] %= BASE;
      c.a[b.len + i] = x;
    }
    while (!c.a[c.len]) c.len--;
    return c;
  }

  friend bigint operator*(bigint a, int b) {
    a.len += 3;
    for (int i = 1; i <= a.len; i++) a.a[i] *= b;
    for (int i = 1; i <= a.len; i++) a.a[i + 1] += a.a[i] / BASE, a.a[i] %= BASE;
    while (!a.a[a.len]) a.len--;
    return a;
  }

  void print() {
    printf("%d", a[len]);
    for (int i = len - 1; i >= 1; i--) printf("%04d", a[i]);
    puts("");
  }

  bigint& operator+=(bigint b) {
    *this = *this + b;
    return *this;
  }

  bigint& operator-=(bigint b) {
    *this = *this - b;
    return *this;
  }

  bigint& operator*=(bigint b) {
    *this = *this * b;
    return *this;
  }
};

【封装工程】OI/ACM常用封装的更多相关文章

  1. React Native之TextInput的介绍与使用(富文本封装与使用实例,常用输入框封装与使用实例)

    React Native之TextInput的介绍与使用(富文本封装与使用实例,常用输入框封装与使用实例) TextInput组件介绍 TextInput是一个允许用户在应用中通过键盘输入文本的基本组 ...

  2. Lua常用封装方法

    Lua 获取随机值 --获取随机值,指定上限和下限 function getRandom(min,max) -- 接收一个整数n作为随即序列的种子 math.randomseed(os.time()) ...

  3. Java 字节的常用封装

    一. Java 的字节 byte (字节) 是 Java 中的基本数据类型,一个 byte 包含8个 bit(位),byte 的取值范围是-128到+127. byte 跟 Java 其他基本类型的关 ...

  4. 多态、Object类和 JDK常用封装类型

    多态 定义:某一类事物的多种存在形态. 多态的体现:父类的引用指向了自己的子类对象.父类的引用也可以接收自己的子类对象. 多态的前提:必须是类与类之间有关系,要么继承,要么实现.通常还有一个前提,存在 ...

  5. 第一百六十一节,封装库--JavaScript,完整封装库文件

    封装库--JavaScript,完整封装库文件 /** *feng_zhuang_ku_1.0版本,js封装库,2016/12/29日:林贵秀 **/ /** 前台调用 * 每次调用$()创建库对象, ...

  6. ACM常用算法及练习(2)

    ACM常用算法及练习 知识类型 重要度 容易度 应掌握度 典型题 其他           数据结构(5) 链表 ★★☆ ★★★ ★★☆     栈 stack ★★★ ★★★ ★★★ HLoj120 ...

  7. ACM常用算法及练习(1)

    ACM常用算法及练习 第一阶段:练经典常用算法,下面的每个算法给我打上十到二十遍,同时自己精简代码,因为太常用,所以要练到写时不用想,10-15分钟内打完,甚至关掉显示器都可以把程序打出来. 1.最短 ...

  8. Redis操作Hash工具类封装,Redis工具类封装

    Redis操作Hash工具类封装,Redis工具类封装 >>>>>>>>>>>>>>>>>> ...

  9. Redis操作字符串工具类封装,Redis工具类封装

    Redis操作字符串工具类封装,Redis工具类封装 >>>>>>>>>>>>>>>>>>& ...

随机推荐

  1. leetcode难题

    4 寻找两个有序数组的中位数       35.9% 困难     10 正则表达式匹配       24.6% 困难     23 合并K个排序链表       47.4% 困难     25 K ...

  2. java中的包注意事项

    1:需要导入包的三个地方 a:需要导入第三方的jar包中的类或接口 b:需要导入除了java.lang包的其他包中的类(jdk中的类) c:需要导入自己写的不同包的类 2:引入包的三种方式 a:imp ...

  3. 02 Redis防止入侵

    在使用云服务器时,安装的redis3.0+版本都关闭了protected-mode,因而都遭遇了挖矿病毒的攻击,使得服务器99%的占用率!! 因此我们在使用redis时候,最好更改默认端口,并且使用r ...

  4. 【Activiti】为每一个流程绑定相应的业务对象的2种方法

    方式1: 在保存每一个流程实例时,设置多个流程变量,通过多个流程变量的组合来过滤筛选符合该组合条件的流程实例,以后在需要查询对应业务对象所对应的流程实例时,只需查询包含该流程变量的值的流程实例即可. ...

  5. vue--支付宝支付

    1.支付宝支付:前端发起一个请求,后台返回一个页面,直接将返回的页面(一个表单),再执行表单提交 okFryOtherPayHandler(){ let reqBody = {}; reqBody.o ...

  6. spring boot 开启Druid监控功能

    1.配置yml spring: datasource: # 数据源基本配置 username: song password: 123456 driver-class-name: com.mysql.j ...

  7. postgres日常操作

    1.启动pgsl数据库 [postgres@master ~]$ pg_ctl start [postgres@master data]$ pg_ctl -D /usr/local/pgsql/dat ...

  8. deep_learning_Function_numpy_argmax()函数

    numpy里面的argmax函数 函数原型:def argmax(a, axis=None, out=None)a----输入arrayaxis----为0代表列方向,为1代表行方向out----结果 ...

  9. deep_learning_Function_tensorflow_reshape()

    numpy.reshape(a, newshape, order='C')[source],参数`newshape`是啥意思? 根据Numpy文档(https://docs.scipy.org/doc ...

  10. 20199319《Linux内核原理与分析》第十一周作业

    ShellShock攻击实验 什么是ShellShock Shellshock,又称Bashdoor,是在Unix中广泛使用的Bash shell中的一个安全漏洞,首次于2014年9月24日公开.许多 ...