ICode9

精准搜索请尝试: 精确搜索
  • 力扣400(java)-第N位数字(中等)2022-08-23 15:02:24

    题目: 给你一个整数 n ,请你在无限的整数序列 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ...] 中找出并返回第 n 位上的数字。   示例 1: 输入:n = 3输出:3示例 2: 输入:n = 11输出:0解释:第 11 位数字在序列 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... 里是 0 ,它是 10 的一部分。  提示: 1 <

  • Yii2 ElasticSearch aggregate (group)2022-08-23 14:04:35

    我想要统计的是 country_code 出现的次数,通过 yii2 的 ElasticSearch 扩展,上面的例子满足我的需要。业务场景:在 fecify 商城中,使用 elasticSearch 搜索,进行 aggregate group 操作,代码如下:   public function actionCountry(){ $size = 5000; $name = 'country_code';

  • NC15033 小G有一个大树2022-08-23 12:33:17

    题目链接 题目 题目描述 小G想要把自己家院子里的橘子树搬到家门口(QAQ。。就当小G是大力水手吧) 可是小G是个平衡性灰常灰常差的人,他想找到一个这个橘子树的平衡点。 怎么描述这棵树呢。。。就把它看成由一个个节点构成的树吧。结点数就 代表树重。 输入描述 多组数据输入输出, 第一

  • 2022-08-22 第四小组 王星苹 学习笔记2022-08-22 19:00:45

    复习HTML,前端的一些复习。 学习总结:     定义音频内容和定义视频内容 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

  • LeetCode 34. 在排序数组中查找元素的第一个和最后一个位置2022-08-22 18:31:31

    34. 在排序数组中查找元素的第一个和最后一个位置 思路: 与AcWing 789一致 class Solution { public: vector<int> searchRange(vector<int>& nums, int target) { if (nums.size() == 0) return {-1, -1}; int begin, end; int l = 0, r = nums.size(

  • C++之vector2022-08-21 13:02:28

      一、标准库函数 1. 构造数组  ——参考博客   一维数组构造: // 构造一维数组 vector<int> vec(n); // n为vec长度,默认所有值为0 vector<int> vec(n, 1); // 所有值设为1   二维m*n数组构造: // 构造二维维数组 vector<int> tmp(n); // n为vec长度,默

  • "蔚来杯"2022牛客暑期多校训练营6 G-Icon Design2022-08-20 20:33:27

    问题描述 What's the feeling of designing an icon for a school as a programmer? Now you have a chance doing it! The icon of Nanjing Foreign Language School (NFLS for short) is not complicated, it can be represented as an ASCII art.   Since the icon might

  • 高精度2022-08-20 16:31:06

    高精度 以下均为压位高精度 高精度除高精度以二分法求 以下均含divide带余数除法 TODO:FFT高精度除高精度 快速傅里叶加速乘法 Code namespace FFT { using cpx = complex<double>; const double PI = acos(-1); vector<cpx> roots = {{0, 0}, {1, 0}}; void ensure_capacity(int

  • 55. 跳跃游戏2022-08-20 01:30:48

    55. 跳跃游戏 给定一个非负整数数组 nums ,你最初位于数组的 第一个下标 。 数组中的每个元素代表你在该位置可以跳跃的最大长度。 判断你是否能够到达最后一个下标。   示例 1: 输入:nums = [2,3,1,1,4] 输出:true 解释:可以先跳 1 步,从下标 0 到达下标 1, 然后再从下标 1 跳 3

  • SP6779 GSS7 - Can you answer these queries VII2022-08-19 15:00:20

    GSS7 - Can you answer these queries VII GSS7 (Luogu) 题面翻译 题目描述 给定一棵树,有\(N(N \le 100000)\)个节点,每一个节点都有一个权值\(x_i (|x_i| \le 10000)\) 你需要执行\(Q (Q \le 100000)\)次操作: 1 a b 查询(a,b)这条链上的最大子段和,可以为空(即输出\(0\)) 2 a b c 将

  • Function Interposition in Linux(hook)2022-08-19 11:30:09

    你是否想多改变库代码的工作方式,不替换整个库或者重新编译它。例如,你想包裹一层malloc和free函数来记录分配的日志,为了查找内存泄露。你可以重写那段使用了malloc/free的代码,或者修改libc,这两者听起来都不是很吸引人的方式 这个教程将告诉你用自己实现的wrapper来代替库中的函数,这

  • 275. H 指数 II--Leetcode_暴力2022-08-19 10:02:12

    来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/h-index-ii 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 题目的大意是这样的 有一个升序排列的数组citations,返回citations的h指数 h指数:在数组citations中,至少有h个元素,他们的值大于等于h 根

  • 暑假集训六 [接力比赛,树上竞技,虚构推理,记忆碎片]2022-08-18 22:02:54

    暑假集训六 别问为什么从六开始。 题面 A.接力比赛 两个01背包跑一遍。 别问代码为啥写的这么阴间。 Code #include<cstdio> #include<algorithm> using namespace std; const int MAXN = 1010, MAXV = 1e6 + 10; const long long INF = 1e18 + 1145141919810; int n, m; long

  • cycleGAN代码实现(附详细代码注释)2022-08-18 16:33:00

    最近刚刚入门深度学习,试着复现cycleGAN代码。看了一个YouTube博主的cycleGAN代码,自己跟着写了一遍,同时加上了代码注释,希望能帮到同样的入门伙伴 下面的github地址 RRRRRBL/CycleGAN-Detailed-notes-: 内含cycleGAN代码,且有详细代码注释 (github.com) 在这里给出一个生成器的代码 i

  • LeetCode 295 Find Median from Data Stream2022-08-18 03:00:08

    The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value and the median is the mean of the two middle values. For example, for arr = [2,3,4], the median is 3. For example, for arr = [2,3], the m

  • 65注意力评分函数2022-08-17 23:03:09

    点击查看代码 import math import torch from torch import nn from d2l import torch as d2l # 掩蔽softmax操作 #@save def masked_softmax(X, valid_lens): """通过在最后一个轴上掩蔽元素来执行softmax操作""" # X:3D张量,valid_lens:1D或2D张量 if valid_lens

  • 68多头注意力2022-08-17 23:01:51

    点击查看代码 import math import torch from torch import nn from d2l import torch as d2l # 选择缩放点积注意力作为每一个注意力头 #

  • 68transformer2022-08-17 23:01:24

    点击查看代码 import math import pandas as pd import torch from torch import nn from d2l import torch as d2l #@save class PositionWiseFFN(nn.Module): """基于位置的前馈网络""" # 全连接 # num_step会变 序列长度 # 所以序列当中每一个元素做一个全连

  • 69BERT2022-08-17 23:00:54

    点击查看代码 import math import pandas as pd import torch from torch import nn from d2l import torch as d2l #@save class PositionWiseFFN(nn.Module): """基于位置的前馈网络""" # 全连接 # num_step会变 序列长度 # 所以序列当中每一个元素做一个全连

  • 手写卷积单元-python2022-08-17 14:00:46

    一个文本卷积模块 def cnn(): import numpy as np result = [] n, dim = 10, 30 kernels = [np.random.randint(0,2,(i, dim)) for i in range(3,6)] # 生成3个长度不同的一维卷积核 data = np.random.random((n, dim)) # 生成数据,np.random.random生成

  • [AcWing 1117] 单词接龙2022-08-17 13:33:46

    DFS 点击查看代码 #include<bits/stdc++.h> using namespace std; typedef long long LL; const int N = 50 + 10; int n; string word[N]; int g[N][N]; // g[i][j]表示word[i]和word[j]的重合部分长度 int used[N]; // 记录单词的使用次数 int ans; void dfs(string s,

  • acwing2022秋招每日一题 1282. 用户分组2022-08-17 00:02:08

    题目 有 n 个人被分成数量未知的组。每个人都被标记为一个从 0 到 n - 1 的唯一ID 。 给定一个整数数组 groupSizes ,其中 groupSizes[i] 是第 i 个人所在的组的大小。例如,如果 groupSizes[1] = 3 ,则第 1 个人必须位于大小为 3 的组中。 返回一个组列表,使每个人 i 都在一个

  • #C220816B. 小凯的疑惑2022-08-16 20:33:44

    #C220816B. 小凯的疑惑 C220816B (校内模拟赛) 背景 注意:本题采用捆绑测试。 题目描述 小凯正在玩一个寻宝游戏。总共有 \(n\) 个不同的藏宝地点,共 \(n-1\) 条道路把这些地点连接起来。小凯知道了第 \(i\) 个地点宝藏的价值为 \(v_i\) ,且如果在某个地点选了宝藏,那么所有与这个地点有

  • Constraint2022-08-16 19:31:32

    1 module top; 2 class PacketBase; 3 rand bit [7:0] src; 4 rand bit [5:0] len; 5 rand bit [7:0] payld [ ]; 6 constraint payload_size {payld.size > 0; payld.size < 15;} 7 endclass 8 class EtherPacket extends PacketBase; 9 constraint

  • 高精度a+b2022-08-16 13:00:26

    高精度a+b acwing3596.a+b 存在vector< int >中去,倒着存,低位在前,高位在后 代码 #include<iostream> #include<vector> #include<cstring> using namespace std; vector<int> add(vector<int>& A,vector<int>& B) { vector<int>

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

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

ICode9版权所有