C++ Const
- 写在前面
- 1.const 修饰成员变量
- 2.const修饰函数参数
- 3.const修饰成员函数
- 4.const修饰函数返回值
- (1)指针传递
- (2)值传递
- 读一首诗
[TOCM]
Consider an n \times mn×m matrix of ones and zeros. For example, this 4 × 4:
1111
0111
0111
0110
We can compute even parity for each row, and each column. In this case, the row parities are [0, 1, 1, 0][0,1,1,0] and the column parities are [1, 0, 0, 1][1,0,0,1] (the parity is 11 if there is an odd number of 11s in the row or column, 00 if the number of 11s is even). Note that the top row is row 11, the bottom row is row nn, the leftmost column is column 11, and the rightmost column is column mm.
Suppose we lost the original matrix, and only have the row and column parities. Can we recover the original matrix? Unfortunately, we cannot uniquely recover the original matrix, but with some constraints, we can uniquely recover a matrix that fits the bill. Firstly, the recovered matrix must contain as many 11’s as possible. Secondly, of all possible recovered matrices with the most 11’s, use the one which has the smallest binary value when you start with row 11, concatenate row 22 to the end of row 11, then append row 33, row 44, and so on.
Input Format
Each input will consist of a single test case.
Note that your program may be run multiple times on different inputs.
Each test case will consist of exactly two lines.
The first line will contain a string R (1 \le |R| \le 50)R(1≤∣R∣≤50), consisting only of the characters 00 and 11. These are the row parities, in order.
The second line will contain a string C (1 \le |C| \le 50)C(1≤∣C∣≤50), consisting only of the characters 00 and 11. These are the column parities, in order.
Output Format
If it is possible to recover the original matrix with the given constraints, then output the matrix as |R|∣R∣ lines of exactly |C|∣C∣ characters, consisting only of 00’s and 11’s. If it is not possible to recover the original matrix, output -1−1.
样例输入1
0110
1001
样例输出1
1111
0111
1110
1111
样例输入2
0
1
样例输出2
-1
样例输入3
11
0110
样例输出3
1011
1101
题目来源
The North American Invitational Programming Contest 2018
题目的意思是,一开始有一个矩阵,每一行的 1
的个数如果是偶数个,记为0
,奇数个记为1
,所以这样会根据矩阵行列中的 1
的个数 来形成两个10
字符串。现在已知这个最终的字符串,要我们还原出原先的矩阵,两点额外的要求:
+ 使矩阵中 1
的数目尽可能的多
+ 最后的矩阵的每一行连接起来
形成的二进制数最小
这样一来我们可以分析得到,我们要在满足尽可能多的 1
的数目的前提下,把 1
往矩阵的右下角扔,这样可以保证,得到的二进制数最小。然后就是另一个问题,我们如何保证当前是尽可能多的 1
。
一开始想把 1
先往右下角放,然后遍历上去,最后检查,但是后来发现这个做法不可取,因为最后一行有可能并不一定都能通过改动变化成合法的,所以后期就把策略改成了
1
的奇偶数,来判断需要置零的坐标这个时候要注意 ,对于下面这一种情况的特判,当时找了好久的BUG
00
11
答案应该是
00
11
如果根据我们的算法,x 和 y 的坐标数不对等的话,还要根据二者的差值是否是偶数,来判断能否更改成合法矩阵,二者差值为奇数的情况始终不可能修改成合法的矩阵,应该输出 -1
.
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
const int maxn = (int)50 + 1;
int dic[maxn][maxn];
int main(int argc, char const *argv[])
{
std::ios::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
string a, b;
while(cin >> a >> b){
memset(dic,0,sizeof(dic));
vector<int> cmda,cmdb;
bool have = false;
int lena = a.size(), lenb = b.size();
for(int i = 0;i < lena; i++){
if(lenb & 1 && a[i] == '0'){
cmda.push_back(i);
}
else if(a[i] == '1' && !(lenb&1)){
cmda.push_back(i);
}
}
for(int i = 0;i < lenb; i++){
if(lena & 1 && b[i] == '0'){
cmdb.push_back(i);
}
else if(b[i] == '1' && !(lena&1)){
cmdb.push_back(i);
}
}
if((cmda.size()-cmdb.size()) & 1){
cout << -1 << endl;
have = true;
}
else if(cmda.size() == cmdb.size()){
int sl = cmda.size();
for(int i = 0;i < sl; i++){
dic[cmda[i]][cmdb[i]]++;
}
}
else{
if(cmda.size() < cmdb.size()){
int i = 0,j = 0;
for(i = 0;i < (int)cmdb.size() - (int)cmda.size(); i++){
dic[0][cmdb[i]]++;
}
for(;j < (int)cmda.size();){
dic[cmda[j++]][cmdb[i++]]++;
}
}
else{
int i = 0,j = 0;
for(i = 0;i < (int)cmda.size() - (int)cmdb.size(); i++){
dic[cmda[i]][0]++;
}
for(;j < (int)cmdb.size();){
dic[cmda[i++]][cmdb[j++]]++;
}
}
}
for(int i = 0;i < lena && !have; i++){
for(int j = 0;j < lenb; j++){
cout << 1 - dic[i][j];
}
// cout << " " << i+1;
cout << endl;
}
}
return 0;
}
代码应该很容易懂,也没加上啥巧办法,就是生写的。
-- 2018.08.12
题目中的意思是,给出一个由 0 和 1 组成的矩阵块,每次按压之后,按压的那一块,其上下左右四面的块的状态都会改变状态,问哪一种按压方法,可以在按压的次数最少的情况下使得矩阵全部为 0,最后输出矩阵。
这个在操作的时候,每一个块一定要尽可能的少操作,因为操作偶数次会恢复初始状态,并且由题意知道,操作的顺序对解结果没有影响,所以我们可以先给定第一行的状态,再由第一行去逐一判断下一行,直到最后看一看是不是合法就好了。
这里的第一行的操作的枚举,可以使用二进制来进行,快速方便,简记做如下代码:
for(int i = 0;i < (1<<n); ++i){
memset(jge,0,sizeof(jge));
for(int j = 0;j < n; ++j){
jge[0][n-j-1] = i>>j&1;
}
}
有这几行代码给出的数组的第一行,就是不同的操作状态,也就是每一种我们都去模拟一下,最后看看哪一个最小。
IMPOSSIBLE
,否则累加当前状态的操作数,看看是不是当前最优操作。#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <vector>
#include <functional>
#include <utility>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <climits>
typedef long long ll;
using namespace std;
const int maxn = 100;
const int dx[5] = {-1,0,0,0,1};
const int dy[5] = {0,-1,0,1,0};
int org[maxn][maxn], jge[maxn][maxn], ans[maxn][maxn];
//origin / judge / answer
int n, m;
inline int find(int x, int y){
int res = org[x][y];
for(int i = 0;i < 5; ++i){
int nx = x + dx[i],ny = y + dy[i];
if(nx >= 0 && nx < m && ny >= 0 && ny < n){
res += jge[nx][ny];
}
}
return (res&1);
}
inline int js(){
for(int i = 1;i < m; ++i){
for(int j = 0;j < n; ++j){
if(find(i-1, j)){
jge[i][j] = 1;
}
}
}
for(int i = 0;i < n; ++ i){
if(find(m-1,i))
return -1;
}
int rs = 0;
for(int i = 0;i < m; ++i){
for(int j = 0;j < n; ++j){
rs += jge[i][j];
}
}
return rs;
}
inline int flip(){
int res = -1;
for(int i = 0;i < (1<<n); ++i){
memset(jge,0,sizeof(jge));
for(int j = 0;j < n; ++j){
jge[0][n-j-1] = i>>j&1;
}
cout << endl;
int num = js();
if(num >= 0 && (res < 0 || res > num)){
res = num;
memcpy(ans,jge,sizeof(jge));
}
}
if (res < 0){
cout << "IMPOSSIBLE" << endl;
}
else {
for(int i = 0;i < m; ++i){
cout << ans[i][0];
for(int j = 1;j < n; ++j){
cout << " " << ans[i][j];
}
cout << endl;
}
}
return 0;
}
int main(int argc, char const *argv[])
{
std::ios::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
while(cin >> m >> n){
memset(org,0,sizeof(org));
for(int i = 0;i < m; ++i){
for(int j = 0;j < n; ++j){
cin >> org[i][j];
}
}
flip();
}
return 0;
}
- 不得不说,生在中国,有时候安装一个软件还真是学习的好“机会”。
这个,笔者一开始是在官网下载的,十分顺利,然而下载下来误删之后,官网就打不开了!!!也 `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第一次修改