不同编程网站应当注意的点

2024-02-19 06:44

本文主要是介绍不同编程网站应当注意的点,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

    • 引入:
    • 洛谷:
    • POJ:
      • C语言:
      • C++:
    • CF:
    • 个人建议:
    • 补充:

引入:

小伙伴们有没有遇到过这种情况:到一个新的网站去编程,思路、算法完全正确,提交上去却是 Wrong AnswerRuntime ErrorComplie ErrorTime Limit Exceed 。这里,我总结了以下几个网站的注意点:

洛谷:

link

提交时右上角有一个选项为 O2 优化。这并不可以随便选。可能有些暴力程序开了 O2 就过了,但正解代码可能厌氧,开了 O2 反而会 TLE

可能的错误点:数组开大了,ll 函数没有返回值,等等。

POJ:

link

北京大学的 OJ ,比较古老,只支持 C++98。因此,不能使用万能头 #include<bits/stdc++.h> 。需要手写头文件。

这里为了方便读者,给出了以下很多常用的头文件:

C语言:

#include <assert.h>    设定插入点
#include <ctype.h>     字符处理
#include <errno.h>     定义错误码
#include <float.h>     浮点数处理
#include <fstream.h>   文件输入/输出
#include <iomanip.h>   参数化输入/输出
#include <iostream.h>   数据流输入/输出
#include <limits.h>    定义各种数据类型最值常量
#include <locale.h>    定义本地化函数
#include <math.h>     定义数学函数
#include <stdio.h>    定义输入/输出函数
#include <stdlib.h>    定义杂项函数及内存分配函数
#include <string.h>    字符串处理
#include <strstrea.h>   基于数组的输入/输出
#include <time.h>     定义关于时间的函数
#include <wchar.h>    宽字符处理及输入/输出
#include <wctype.h>    宽字符分类

#include <assert.h>    //设定插入点
#include <ctype.h>     //字符处理
#include <errno.h>     //定义错误码
#include <float.h>     //浮点数处理
#include <fstream.h>   //文件输入/输出
#include <iomanip.h>   //参数化输入/输出
#include <iostream.h>   //数据流输入/输出
#include <limits.h>    //定义各种数据类型最值常量
#include <locale.h>    //定义本地化函数
#include <math.h>     //定义数学函数
#include <stdio.h>    //定义输入/输出函数
#include <stdlib.h>    //定义杂项函数及内存分配函数
#include <string.h>    //字符串处理
#include <strstrea.h>   //基于数组的输入/输出
#include <time.h>     //定义关于时间的函数
#include <wchar.h>    //宽字符处理及输入/输出
#include <wctype.h>    //宽字符分类
int main(){}

C++:

#include < algorithm >   STL通用算法
#include < bitset >    STL位集容器
#include < cctype >
#include < cerrno >
#include < clocale >
#include < cmath >
#include < complex >   复数类
#include < cstdio >
#include < cstdlib >
#include < cstring >
#include < ctime >
#include < deque >    STL双端队列容器
#include < exception >  异常处理类
#include < fstream >
#include < functional >  STL定义运算函数(代替运算符)
#include < limits >
#include < list >     STL线性列表容器
#include < map >     STL 映射容器
#include < iomanip >
#include < ios >     基本输入/输出支持
#include < iosfwd >  输入/输出系统使用的前置声明
#include < iostream >
#include < istream >    基本输入流
#include < ostream >   基本输出流
#include < queue >    STL队列容器
#include < set >      STL 集合容器
#include < sstream >   基于字符串的流
#include < stack >    STL堆栈容器    
#include < stdexcept >   标准异常类
#include < streambuf >  底层输入/输出支持
#include < string >    字符串类
#include < utility >     STL通用模板类
#include < vector >    STL动态数组容器
#include < cwchar >
#include < cwctype >

#include <algorithm>    //STL通用算法
#include <bitset>     //STL位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex>     //复数类
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>      //STL双端队列容器
#include <exception>    //异常处理类
#include <fstream>
#include <functional>   //STL定义运算函数(代替运算符)
#include <limits>
#include <list>      //STL线性列表容器
#include <map>       //STL 映射容器
#include <iomanip>
#include <ios>      //基本输入/输出支持
#include <iosfwd>     //输入/输出系统使用的前置声明
#include <iostream>
#include <istream>     //基本输入流
#include <ostream>     //基本输出流
#include <queue>      //STL队列容器
#include <set>       //STL 集合容器
#include <sstream>    //基于字符串的流
#include <stack>      //STL堆栈容器    
#include <stdexcept>    //标准异常类
#include <streambuf>   //底层输入/输出支持
#include <string>     //字符串类
#include <utility>     //STL通用模板类
#include <vector>     //STL动态数组容器
#include <cwchar>
#include <cwctype>
using namespace std;
int main(){}

并且不能用 cin>>s 之类来输入一个字符串,只能用 scanf("%s",s) 来读入。

CF:

link

大部分是多组数据。

不能用 unordered_map ,建议手写 hash 或者使用常数大很多的 map

因为有 dalao 对着 unordered_map 的源码构造 hack 数据,所以 unordered_mapTLE

如果在洛谷上提交,则不能选择 C++14 ,否则会返回 UKE

而我们平时用的基本上都是 C++14 ,因此要选择 c++17 或者是 C++20 。我个人推荐 C++17 ,这是因为 C++20 当中有一些变量名其实自己是一个函数,容易 CE

个人建议:

做题的目的,是提高自己的水平,从而打比赛的时候能比较顺畅。而真正比赛的时候可以用万能头,所以我们平时可以直接复制所以的头文件。

关于 STL ,我的建议是手写,因为手写常数小,不容易被卡掉。

补充:

大家有什么补充,欢迎发在评论区~

这篇关于不同编程网站应当注意的点的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/723814

相关文章

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

购买磨轮平衡机时应该注意什么问题和技巧

在购买磨轮平衡机时,您应该注意以下几个关键点: 平衡精度 平衡精度是衡量平衡机性能的核心指标,直接影响到不平衡量的检测与校准的准确性,从而决定磨轮的振动和噪声水平。高精度的平衡机能显著减少振动和噪声,提高磨削加工的精度。 转速范围 宽广的转速范围意味着平衡机能够处理更多种类的磨轮,适应不同的工作条件和规格要求。 振动监测能力 振动监测能力是评估平衡机性能的重要因素。通过传感器实时监

uva 10061 How many zero's and how many digits ?(不同进制阶乘末尾几个0)+poj 1401

题意是求在base进制下的 n!的结果有几位数,末尾有几个0。 想起刚开始的时候做的一道10进制下的n阶乘末尾有几个零,以及之前有做过的一道n阶乘的位数。 当时都是在10进制下的。 10进制下的做法是: 1. n阶位数:直接 lg(n!)就是得数的位数。 2. n阶末尾0的个数:由于2 * 5 将会在得数中以0的形式存在,所以计算2或者计算5,由于因子中出现5必然出现2,所以直接一

【编程底层思考】垃圾收集机制,GC算法,垃圾收集器类型概述

Java的垃圾收集(Garbage Collection,GC)机制是Java语言的一大特色,它负责自动管理内存的回收,释放不再使用的对象所占用的内存。以下是对Java垃圾收集机制的详细介绍: 一、垃圾收集机制概述: 对象存活判断:垃圾收集器定期检查堆内存中的对象,判断哪些对象是“垃圾”,即不再被任何引用链直接或间接引用的对象。内存回收:将判断为垃圾的对象占用的内存进行回收,以便重新使用。

Go Playground 在线编程环境

For all examples in this and the next chapter, we will use Go Playground. Go Playground represents a web service that can run programs written in Go. It can be opened in a web browser using the follow

深入理解RxJava:响应式编程的现代方式

在当今的软件开发世界中,异步编程和事件驱动的架构变得越来越重要。RxJava,作为响应式编程(Reactive Programming)的一个流行库,为Java和Android开发者提供了一种强大的方式来处理异步任务和事件流。本文将深入探讨RxJava的核心概念、优势以及如何在实际项目中应用它。 文章目录 💯 什么是RxJava?💯 响应式编程的优势💯 RxJava的核心概念

函数式编程思想

我们经常会用到各种各样的编程思想,例如面向过程、面向对象。不过笔者在该博客简单介绍一下函数式编程思想. 如果对函数式编程思想进行概括,就是f(x) = na(x) , y=uf(x)…至于其他的编程思想,可能是y=a(x)+b(x)+c(x)…,也有可能是y=f(x)=f(x)/a + f(x)/b+f(x)/c… 面向过程的指令式编程 面向过程,简单理解就是y=a(x)+b(x)+c(x)