关于 NOI 系列的环境和限制的一些疑问
  • 板块灌水区
  • 楼主Naszt
  • 当前回复5
  • 已保存回复5
  • 发布时间2024/10/7 15:02
  • 上次更新2024/10/7 16:36:50
查看原帖
关于 NOI 系列的环境和限制的一些疑问
496464
Naszt楼主2024/10/7 15:02

环境是否是 GNU C++ 14 而不是 ISO C++ 14
也就是说允许使用 std::__lg() 函数?

是否可以使用 stdint.h

typedef signed char int8_t;
typedef unsigned char   uint8_t;
typedef short  int16_t;
typedef unsigned short  uint16_t;
typedef int  int32_t;
typedef unsigned   uint32_t;
__MINGW_EXTENSION typedef long long  int64_t;
__MINGW_EXTENSION typedef unsigned long long   uint64_t;

而不是使用 long long

可否允许使用 fread() fwrite() 以优化输入输出?

2024/10/7 15:02
加载中...