Skip to content

cuzperf/cf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Code by cuzperf

Source Code In Codeforces.

My config:

clang++ $%full%$ -o $%file%$.out -std=c++17 -Wall -Wshadow -ftrapv -Wno-error -g -fsanitize=undefined

Note than D_GLIBCXX_DEBUG may hide debug info, and -Wextra may be too annoy

.vscode/launch.json 配置:

{
  // clang++ main.cpp -o main.out -std=c++17 -Wall -Wshadow -ftrapv -Wno-error -g -fsanitize=undefined
  // .vscode/launch.json need vscode extension: codelldb and replace 1722 with current contest id

  // 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/1722/c/c.out",
      "args": [],
      "cwd": "${workspaceFolder}/contest/1722/c",
    },
    {
      "type": "lldb",
      "request": "launch",
      "name": "main",
      "program": "${workspaceFolder}/main.out",
      "args": [],
      "cwd": "${workspaceFolder}",
    },
  ]
}

Genius

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages