当前位置:   article > 正文

i64 和 i128数据类型_0i64

0i64

一 : 介绍:

int64_t 是 C/C++ 中的一个标准整型数据类型,表示 64 位带符号整数,范围是 -2^63 到 2^63-1。

int128_t 是 C/C++ 中的一个扩展整型数据类型,表示 128 位带符号整数,范围是 -2^127 到 2^127-1。

二 : 用途:

处理极大值的运算,当long long 和 unsigned long long 无法满足运算条件时使用

0 <= i , j ≤ 10 ^ 12

当 i 和 j 运算为 10 ^ 12次加法或者进行乘法时long long 和 unsigned long long 无法满足运算条件

三 : 头文件即使用方式

  1. #include <cstdio>
  2. #include <cstdint>
  3. using namespace std;
  4. using i64 = int64_t;
  5. using i128 = __int128_t;

对于i64

  1. int main() {
  2. ios::sync_with_stdio(false);
  3. cin.tie(nullptr);
  4. i64 A, B;
  5. cin >> A >> B;
  6. cout << A * B << endl;
  7. }

可以执行以上操作:

例如输入俩个大数

  1. 1234567412418986541 123456789987654321232414214
  2. 结果 7988804624435789267

但是对于i128比较特殊

一般编译器不允许输入输出

例如:

  1. int main() {
  2. ios::sync_with_stdio(false);
  3. cin.tie(nullptr);
  4. i128 A, B;
  5. cin >> A >> B;
  6. cout << A * B << endl;
  7. }

这样是不被允许的

正确使用为通过函数接受转换i64的数据类型(也可以是字符串)

例如:

  1. i128 ans(i128 ad, i128 hp)
  2. {
  3. i128 res = (i128)1 << 120, pre = 0;
  4. res - ad * hp;
  5. return res;
  6. }

而主函数部分为

  1. int main()
  2. {
  3. ios::sync_with_stdio(false);
  4. cin.tie(nullptr);
  5. i64 ad, hp;
  6. cin >> ad >> hp;
  7. ans(ad, hp);
  8. }

当然由于不允许直接输出即使我们用一个i128变量接收ans的返回值也是不允许printf和cout的操作.

四 : 特殊类型i128如何输出 ? 

通常输出是将i28转换为字符串后进行输出例如下列模板

  1. template <typename T> void print(T x)
  2. {
  3. if (x == 0) cout << "0";
  4. else
  5. {
  6. string s;
  7. while (x)
  8. {
  9. s.push_back(char('0' + x % 10));
  10. x /= 10;
  11. }
  12. cout << s;
  13. }
  14. }

总体实现

  1. #include <cstdio>
  2. #include<string>
  3. #include<algorithm>
  4. #include <cstdint>
  5. #include<iostream>
  6. using namespace std;
  7. using i64 = int64_t;
  8. using i128 = __int128_t;
  9. i128 f(i128 ad, i128 hp)
  10. {
  11. i128 res = (i128)1 << 120, pre = 0;
  12. res - ad * hp;
  13. return res;
  14. }
  15. template <typename T> void print(T x)
  16. {
  17. if (x == 0) cout << "0";
  18. else
  19. {
  20. string s;
  21. while (x)
  22. {
  23. s.push_back(char('0' + x % 10));
  24. x /= 10;
  25. }
  26. cout << s;
  27. }
  28. }
  29. int main()
  30. {
  31. ios::sync_with_stdio(false);
  32. cin.tie(nullptr);
  33. i64 ad, hp;
  34. cin >> ad >> hp;
  35. print(f(ad, hp));
  36. }
  1. 输入1234567412418986541 123456789987654321232414214
  2. 计算 1 << 120 - A * B
  3. 结果 6754430820607083092785194875997229231

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/432170
推荐阅读
  

闽ICP备14008679号