剑指Offer-47-礼物的最大价值

题目


题目描述

在一个 m*n 的棋盘的每一格都放有一个礼物,每个礼物都有一定的价值(价值大于 0)。你可以从棋盘的左上角开始拿格子里的礼物,并每次向右或者向下移动一格、直到到达棋盘的右下角。给定一个棋盘及其上面的礼物的价值,请计算你最多能拿到多少价值的礼物?


剑指Offer-46-把数字翻译成字符串

题目


题目描述

给定一个数字,我们按照如下规则把它翻译为字符串:0 翻译成 “a” ,1 翻译成 “b”,……,11 翻译成 “l”,……,25 翻译成 “z”。一个数字可能有多个翻译。请编程实现一个函数,用来计算一个数字有多少种不同的翻译方法。


PPNet

PPNet(Part-aware Prototype Network for Few-shot Semantic Segmentation)[1] decompose the holistic class representation into a set of part-aware prototypes, and leverage unlabeled data to better modeling of intra-class variations. Besides, graph neural network model is used to generate and enhance the proposed part-aware prototypes. There are some details of reading and implementing it.


PANet

PANet(PANet: Few-Shot Image Semantic Segmentation with Prototype Alignment)[1] learns class-specific prototype representations for images and matches each pixel to the learned prototypes. There are some details of reading and implementing it.


剑指Offer-45-把数组排成最小的数

题目


题目描述

输入一个非负整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。


剑指Offer-44-数字序列中某一位的数字

题目


题目描述

数字以0123456789101112131415…的格式序列化到一个字符序列中。在这个序列中,第5位(从下标0开始计数)是5,第13位是1,第19位是4,等等。

请写一个函数,求任意第n位对应的数字。


Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×