安装
使用sublime作为acm编辑器那必然少不了神级插件FOC(Fast Olympic Coding plugin for Sublime Text 3)
安装地址: CppFastOlympicCoding - Packages - Package Control
快捷键:
- ctrl+b (OSX) ctrl+alt+b (Linux + Win) compile and run
- ctrl+enter new test
- ctrl+c (OSX) ctrl+x (Linux + Win) kill process
- ctrl+shift+b (OSX) run with debugger
- ctrl+d delete test
- ctrl+super+up/ctrl+super+down (OSX) ctrl+shift+up/ctrl+shift+down (Linux + Win) swap tests
- cmd+k, cmd+p (OSX) ctrl+k, ctrl+p (Linux + Win) close/open right panel
ACL的安装方式如下
git clone https://github.com/atcoder/ac-library acm_with_acl
然后就可以在acm_with_acl这个文件夹中写代码了
当然这是cpp的ACL,以下是其他语言的ACL
之后对FOC插件进行配置
ctrl+shift+p,之后输入FastOlympicCoding: Open Settings
就可以进行配置了
修改FOC的编译命令,使其编译的时候可以支持ACL
{
"run_settings": [
{
"name": "C++",
"extensions": ["cpp"],
"compile_cmd": "g++ \"{source_file}\" -std=c++14 -o \"{file_name}\" -I .",
"run_cmd": "\"{source_file_dir}\\{file_name}.exe\" {args} -debug",
"lint_compile_cmd": "g++ -std=gnu++11 \"{source_file}\" -I \"{source_file_dir}\""
}
],
}
当然ACL的头文件只有atcoder可以使用,想要在其他oj使用ACL就需要ACL官方的脚本
使用方式如下
python expander.py <filename>.cpp
运行成功后文件夹内会生成一个cpp文件combined.cpp
复制里面的内容就可以在其他oj提交了