算法训练营第五十八天 | LeetCode 392 判断子序列、卡码网模拟美团笔试第一、二、三题(300/500有待提高)

卡码网图论更新了可以去看看,模拟笔试第四题就是深搜/广搜还不太会

LeetCode 392 判断子序列


其实就是最长公共子序列翻版

代码如下:

java 复制代码
class Solution {
    public boolean isSubsequence(String s, String t) {
        int[][] dp = new int[s.length() + 1][t.length() + 1];
        int result = 0;
        for (int i = 1; i <= s.length(); i++) {
            for (int j = 1; j <= t.length(); j++) {
                if (s.charAt(i-1) == t.charAt(j-1))
                    dp[i][j] = Math.max(dp[i][j], dp[i-1][j-1]+1);
                else dp[i][j] = Math.max(dp[i][j-1], dp[i-1][j]);
                if (result < dp[i][j]) result = dp[i][j];
            }
        }
        return result == s.length();
    }
}

模拟美团笔试第一题 小美的排列询问


简单模拟

代码如下:

cpp 复制代码
#include <iostream>

using namespace std;

int main() {
    int n;
    cin >> n;
    int a[n];
    for (int i = 0; i < n; i++) cin >> a[i];
    int x, y;
    cin >> x >> y;
    for (int i = 0; i < n; i++) {
        if (a[i] == x || a[i] == y) {
            if (i + 1 < n && (a[i+1] == x || a[i+1] == y) && a[i+1] != a[i]) {
                cout << "Yes" << endl;
                return 0;
            } else break;
        }
    }
    cout << "No" << endl;
}

第二题 小美走公路


简单模拟

代码如下:

cpp 复制代码
#include <iostream>
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    long long a[n];
    long long sum = 0;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        sum += a[i];
    }    
    int x, y;
    cin >> x >> y;
    if (x > y) {
        long long t = y;
        y = x;
        x = t;
    }
    if (x == y) {
        cout << 0 << endl;
        return 0;
    }
    long long cost = 0;
    for (int i = x; i < y; i++) {
        cost += a[i];
    }
    cost = min(cost, sum - cost);
    cout << cost << endl;
}

第三题 小美的蛋糕切割


二维前缀和

代码如下:

cpp 复制代码
#include <iostream>
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    long long a[n];
    long long sum = 0;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        sum += a[i];
    }    
    int x, y;
    cin >> x >> y;
    if (x > y) {
        long long t = y;
        y = x;
        x = t;
    }
    if (x == y) {
        cout << 0 << endl;
        return 0;
    }
    long long cost = 0;
    for (int i = x; i < y; i++) {
        cost += a[i];
    }
    cost = min(cost, sum - cost);
    cout << cost << endl;
}
相关推荐
Captain823Jack22 分钟前
nlp新词发现——浅析 TF·IDF
人工智能·python·深度学习·神经网络·算法·自然语言处理
Captain823Jack1 小时前
w04_nlp大模型训练·中文分词
人工智能·python·深度学习·神经网络·算法·自然语言处理·中文分词
测试杂货铺1 小时前
Jmeter压测实战:Jmeter二次开发之自定义函数
自动化测试·软件测试·测试工具·jmeter·职场和发展·测试用例·压力测试
是小胡嘛2 小时前
数据结构之旅:红黑树如何驱动 Set 和 Map
数据结构·算法
m0_748255022 小时前
前端常用算法集合
前端·算法
呆呆的猫2 小时前
【LeetCode】227、基本计算器 II
算法·leetcode·职场和发展
Tisfy2 小时前
LeetCode 1705.吃苹果的最大数目:贪心(优先队列) - 清晰题解
算法·leetcode·优先队列·贪心·
余额不足121382 小时前
C语言基础十六:枚举、c语言中文件的读写操作
linux·c语言·算法
测试老哥2 小时前
外包干了两年,技术退步明显。。。。
自动化测试·软件测试·python·功能测试·测试工具·面试·职场和发展
火星机器人life5 小时前
基于ceres优化的3d激光雷达开源算法
算法·3d