首页 > TAG信息列表 > 646

Leetcode-646. 最长数对链

链接 646. 最长数对链 题目 给出 n 个数对。 在每一个数对中,第一个数字总是比第二个数字小。 现在,我们定义一种跟随关系,当且仅当 b < c 时,数对(c, d) 才可以跟在 (a, b) 后面。我们用这种形式来构造一个数对链。 给定一个数对集合,找出能够形成的最长数对链的长度。你不

646 · 第一个独特字符位置

646 · 第一个独特字符位置 描述 给出一个字符串。找到字符串中第一个不重复的字符然后返回它的下标。如果不存在这样的字符,返回 -1。 样例 样例 1: 输入 : s = “lintcode” 输出 : 0 样例 2: 输入 : s = “lovelintcode” 输出 : 2 public class Solution { /** *

646

Codeforces Round #646 (Div. 2) A. Odd Selection(思维/分类讨论)

A. Odd Selection time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Shubham has an array aa of size nn, and wants to select exactly xx elements from it, such that their sum is odd. These elements d

Codeforces Round #646 (Div. 2)

A 我人傻了, 没理解清题意 设有x个奇数, y个偶数 且两个奇数等于一个偶数 所以就让偶数和成对的奇数去凑(m - 1), 并保证剩下一个奇数 则YES 我真就sb, 忘了用奇数凑偶数的时候是凑出的成对的, 罚时全是A贡献 淦 #include <bits/stdc++.h> #define all(n) (n).begin(), (n).end()