izlyforever / cf

Source Code in Codeforces and other OJs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cpplib

  • Think twice, code once
  • 如果没有本质修改,且没有发现问题,大概率题意理解错了。

Code by izlyforever

Source Code In Codeforces and other OJs.

Use cf-tool

my config:

g++ $%full%$ -o $%file%$.out -std=c++17 -D_GLIBCXX_DEBUG -Wall -Wshadow -Wno-error -g
// .vscode/launch.json need vscode extension: codelldb and replace 1719 with current contest id
// clang++ main.cpp -o main.out -std=c++17 -D_GLIBCXX_DEBUG -Wall -Wshadow -Wno-error -g
{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "lldb",
      "request": "launch",
      "name": "c",
      "program": "${workspaceFolder}/contest/1719/c/c.out",
      "args": [],
      "cwd": "${workspaceFolder}/contest/1719/c",
    },
    {
      "type": "lldb",
      "request": "launch",
      "name": "main",
      "program": "${workspaceFolder}/main.out",
      "args": [],
      "cwd": "${workspaceFolder}",
    },
  ]
}

Genius

About

Source Code in Codeforces and other OJs


Languages

Language:C++ 61.0%Language:SWIG 38.1%Language:Python 0.5%Language:Assembly 0.1%Language:C 0.1%Language:Shell 0.1%