摘要:
//Time 0ms, Memory 288K#include
#include
using namespace std;
int mex(int s,int c)
{ int q=sqrt(s*1.0); while(q+q*q>=s) q--; if(q>n && n) { int ans=0; for(i=0;i>s>>c; ans^=mex(s,c); } cout<<"Case "<<t++<<":"<<endl; if(ans) cout<&l 阅读全文
摘要:
问题:在纯ubuntu环境下工作,需要访问windows环境下搭建的服务器,没有ftp服务,就是可以通过IP地址直接访问目录的那种;解决办法:1. ubuntu的nautilus中选择File--->Connect to Server...,在窗口Connect to Server中,选择type为Windows share,在Server中输入需要访问的文件服务器的IP地址,点击Connect,成功连接。问题解决。 阅读全文
摘要:
要求就是:1、将当前目录中的所有“子目录”的权限设置为755;2、将当前目录中的所有“文件”的权限设置为644。解决方法:chmod 644 -R *chmod 755 `find -type d`也可以用:用find彻底些find /path -type f -exec chmod 644 {} /;find /path -type d -exec chmod 755 {} /;在linux中的每一个文件或目录都包含有访问权限,这些访问权限决定了谁能访问和如何访问这些文件和目录。通过设定权限可以从以下三种访问方式限制访问权限:只允许用户自己访问;允许一个预先指定的用户组中的用户访问;允许系统 阅读全文