ICode9

精准搜索请尝试: 精确搜索
  • 后门原理与实践2022-04-02 01:35:05

    实验内容 1.使用netcat获取主机操作Shell,cron启动 2.使用socat获取主机操作Shell, 任务计划启动 3.使用MSF meterpreter(或其他软件)生成可执行文件,利用ncat或socat传送到主机并运行获取主机Shell 4.使用MSF meterpreter(或其他软件)生成获取目标主机音频、摄像头、击键记录等

  • 1304:数的划分2021-08-23 12:33:23

    数的划分 与 鸣人的影分身 不能说相似吧,只能说一模一样。 深搜应该也没问题,这里就不尝试了。 下面贴一个dp解法(上一题的注释懒得改了⁄(⁄ ⁄•⁄ω⁄•⁄ ⁄)⁄) 1 #include<iostream> 2 #include<cstring> 3 using namespace std; 4 const int N=205; 5 int f[8][N][N];

  • HDU 1304(A Contesting Decision)2020-03-16 16:43:26

    基础题。 #include <iostream> #include <string> #include <algorithm> using namespace std; const int MAXN = 1000; struct team //队伍 { string name; //队伍名 int solve = 0; //解决问题数量 int penalty = 0; //惩罚时间 }t[MAXN]; //排序要求 bool cmp(team t1

  • 1304. Find N Unique Integers Sum up to Zero2020-01-24 17:02:58

    Source: https://leetcode.com/problems/find-n-unique-integers-sum-up-to-zero/ Given an integer n, return any array containing n unique integers such that they add up to 0. Example 1: Input: n = 5 Output: [-7,-1,1,3,4] Explanation: These arrays also are a

  • BZOJ 1304: [CQOI2009]叶子的染色 树形DP + 结论2019-07-17 12:07:15

    Code:  #include<bits/stdc++.h>#define setIO(s) freopen(s".in","r",stdin)#define maxn 1000000 #define inf 1000000000 using namespace std; int n,m,edges; int col[maxn],f[maxn][2],hd[maxn],to[maxn<<1],nex[maxn<<1];void

  • YTU 1304: 串的简单处理2019-05-11 13:50:51

    风华是一指流砂,苍老是一段年华。 题目描述 串的处理 在实际的开发工作中,对字符串的处理是最常见的编程任务。本题目即是要求程序对用户输入的串进行处理。具体规则如下: 1.    把每个单词的首字母变为大写。 2.    把数字与字母之间用下划线字符(_)分开,使得更清晰 3.   

  • 浙江骑芯供应链管理有限公司-面试情况2019-02-28 13:02:16

    这是我面试的第二家公司 公司环境: 1)位于杭州市萧山经济技术开发区天辰国际广场5幢1304室,属于创业公司 2)总人数30人左右,Java开发人数6人,老板是技术人员出身 3)团队开发模式-全栈开发 4)公司前期是做物流的,目前是做供应链系统,类似于滴滴打车,只不过是扫码用车装货,公司框架为SpringCloud,

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有