SDUSTOJ:Problem D: 儿童绘画游戏
山东科技大学的一道 OJ 题目
山东科技大学的一道 OJ 题目
- 不得不说,生在中国,有时候安装一个软件还真是学习的好“机会”。
这个,笔者一开始是在官网下载的,十分顺利,然而下载下来误删之后,官网就打不开了!!!也 `ping` 不通了!笔者实在是不想在国内一堆乱七八糟的网站下载,就飞出去到了官网下载。
不知道什么时候还会再打开或者打不开,相信笔者的童鞋可以下载我安装的版本。百度网盘吧,不是很大
Sublime Text 3 3143 x64&32 PC(上传日期:2018。02.27)
官方网站
百度云盘: https://pan.baidu.com/s/1o9AsINK 密码: 3e2d
Sublime不是一个具体的IDE,要使用它要经过一些配置
Dev-c++
/Code Blocks
(带编译器版本)/VS
··· ···,这个时候,不再需要去下载编译器了,Installation->Apply Changes
C++11配置文件
{
"encoding": "utf-8",
"working_dir": "$file_path",
"shell_cmd": "g++ -Wall -std=c++11 \"${file}\" -o \"${file_path}/${file_base_name}\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"selector": "source.c++",
"variants":
[
{
"name": "Run",
"shell_cmd": "g++ -Wall -std=c++11 \"${file}\" -o \"${file_base_name}\" && start cmd /c \"\"${file_path}/${file_base_name}\" & pause\""
}
]
}
一般这个时候Build System选择刚才新创建的文件的话,直接ctrl+B就可以运行了,不行的话,请重启电脑,
如果还是错误,请检查步骤和文件整体是否完全。(请在英文输入法状态下操作)
Tools
-New Snippet
<snippet>
<content><![CDATA[
Hello, ${1:this} is a ${2:snippet}.
]]>//在这里输入内容,${1:}表示按完快键键后按光标所在位置
${2:}表示,按完快捷键后,按第一下tab光标转移到的位置。
</content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<!-- <tabTrigger>hello</tabTrigger> -->//快捷键开关,你要把注释取消掉,像
<tabTrigger>hello</tabTrigger>//我的图中就是把hello改成了'#init'
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
我的配置是这样的
由于里面有解析标签,显示不完全,所以换成图片了
#init
再按一下Tab,哇,是不是会了!
改变tabTrigger的内容,可以改变快捷键哦!
下面,你就可以使(rou)用(lin)他了,快用他去码字吧!
插件有好多啊,大家搜一搜估计就好了,我说我的主题吧。
主题我是Boxy
和AFileIcon
感觉ConvertToUTF8
不错
View
-> Show Console
import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)
import urllib2,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')
Preference
,如果看到了Package Control
就完成了。ctrl+shift+P
输入 pcic
,就可以安装你找到的插件了,只需要输入名字哦!Package Control Install Package
,但是弹出来一个对话框,说:PackageControl.sublime-settings
Preference
->Package Setting
->Settings Default
)channels
,将里面的网址对应的部分改成 C:\\Users\\Fancyking\\Documents\\Sublime\\channel_v3.json
hosts
文件里,50.116.33.29 sublime.wbond.net
50.116.34.243 packagecontrol.io
Package Control
文件夹下,注意哦,GitHub上的Zip,解压之后,不要忘了删除最后的 -master
哦,不然是会报错的!折腾了好久,安装了满意的Sublime,这个我觉得兼具好看,快速,体积小,内存小的优点,就是在中国要折腾一下。
写这篇笔记也写到了深夜,希望可以帮到需要的人吧,反正当时我安装的时候,找了好多资料!
The World Is Not Enough!
— —This is what I believe forever!
— —This is my belief
2018.02.28初稿
2018.02.30第一次修改