码迷,mamicode.com
首页 >  
搜索关键字:its    ( 9997个结果
代码摘抄 class Object, jre1.8, rt.jar, package java.lang
/* * Copyright (c) 1994, 2012, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. ...
分类:编程语言   时间:2021-05-24 14:13:02    阅读次数:0
[Codeforces 559C] Gerald and Giant Chess
https://codeforces.ml/contest/559/problem/C 题意: 从矩阵的左上角走到右下角,其中$n$个格子不能走,每次只能向右走或者向下走,问方案数。矩阵大小$105 \times 105$,\(1 \leq n \leq 2000\)。 思路: 矩阵大小太大了,不能 ...
分类:其他好文   时间:2021-05-23 23:32:23    阅读次数:0
[AWS - Monitoring and Troubleshooting] 5.1 Write code that can be monitored
Trusted Advisor The trusted advisor is an AWS service that evaluates your environment and can provide recommendations for improvement Security improve ...
分类:其他好文   时间:2021-05-04 16:11:23    阅读次数:0
[LeetCode] 1844. Replace All Digits with Characters
You are given a 0-indexed string s that has lowercase English letters in its even indices and digits in its odd indices. There is a function shift(c, ...
分类:其他好文   时间:2021-05-04 15:31:41    阅读次数:0
C++11新特性
一、原生字符串(raw string literals) 比如我们写硬盘上一个文件的访问路径:"C:\Program Files\Microsoft.NET\ADOMD.NET",你需要把它写成以下格式 string path = "C:\\Program Files\\Microsoft.NET\ ...
分类:编程语言   时间:2021-05-03 12:40:02    阅读次数:0
CF549F(分治+启发式合并)
这道题的初始思路可以看的出来 是一道分治的思想,这种题往往枚举端点计算贡献 而这一题因为有个最大值的限制,所以我们考虑维护每个点作为最大值的答案 那么一般来说,都是在区间内,枚举首位,然后二分答案,但是这样复杂度会退化,例如一个很长的递增子序列 因此我们考虑启发式合并,前缀和后缀哪边小枚举哪边,这样 ...
分类:其他好文   时间:2021-05-03 12:20:44    阅读次数:0
c# CAD文件读取
//在不使用任务插件的情况下读取DWG文件的缩略图,以便在没有安装AutoCAD的计算机上浏览。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syst ...
分类:Windows程序   时间:2021-04-30 12:41:32    阅读次数:0
<<Rust程序设计语言>>个人版(3.3: 函数/3.4: 注释/3.5: 控制流)
常见程序设计概念 函数 函数在rust中无处不在, 对于rust程序来讲, main函数是许多程序的入口, 之前我们知道, 建立一个函数的关键字是 fn rust使用下划线命名法来命名, 这个之前也有提到过 我们来看下面的程序 fn main() { println!("Hello, world!" ...
分类:编程语言   时间:2021-04-30 12:12:35    阅读次数:0
First Unique Character in a String (找到一个字符串中第一个不重复的字符)
问题描述 下面是有关这个问题的描述部分。 英文 Given a string s, return the first non-repeating character in it and return its index. If it does not exist, return -1. 中文 针对给 ...
分类:其他好文   时间:2021-04-28 12:10:00    阅读次数:0
2021团体程序设计天梯赛 L1-8 乘法口诀数列
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; int ans[maxn]; int main() { int a, b, n; cin >> a >> b >> n; ...
分类:其他好文   时间:2021-04-27 15:09:43    阅读次数:0
9997条   上一页 1 2 3 4 5 ... 1000 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!