记录一下拼多多笔试8.2

先自报一下,本人非科班,比较菜,笔试四道题一道都没有Ac.

  1. 90%
  2. 0%
  3. 50%
  4. 0% 刚刚把这道题磕出来了

第一题做梦走各种问题

每次往右走,如果到终点步数没用完就要往回退。

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
/**
 * @Description:
 * @Create 2020-08-02 19:02
 * @Email:
 */
public class Main{
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = null;
        while ((s = br.readLine()) != null) {
            String[] s1 = s.split(" ");
            int K = Integer.valueOf(s1[0]);
            int N = Integer.valueOf(s1[1]);
            int[] arr = new int[N];
            s1 = br.readLine().split(" ");
            for (int i = 0; i < N; i++) {
                arr[i] = Integer.valueOf(s1[i]);
            }
            String res = function1(K, N, arr);
            System.out.println(res);
 
 
        }
        br.close();
    }
 
 
    private static String function1(int k, int n, int[] arr) {
        int now = 0;
        int count = 0;
        boolean isRight = true;
        for (int i = 0; i < n; i++) {
            if (i == n - 1 && now == k) {
                return "paradox";
            }
            // 每次开始都是往右走
            isRight = true;
            for (int j = 0; j < arr[i]; j++) {
                if (now == k) {
                    // 换方向
                    isRight = false;
                    count++;
 
                }
                if (now == 0) {
                    // 换方向
                    isRight = true;
                }
                if (isRight) {
                    now++;
                } else {
                    now--;
                }
            }
        }
        int dis = k - now;
        return dis + " " + count;
    }
 
}

第三题食堂吃饭问题

第二题没有写,自己太菜看不太懂,第三题食堂营养餐的那个题,需要达到营养标准,同时营养餐的热量越少越好,可以不吃都行。我暴力过了50%,想不到好的思路,不知道有没有大佬分享一下代码。

import java.awt.event.MouseAdapter;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
/**
 * @Description:
 * @Create 2020-08-02 19:57
 * @Email:
 */
public class Main{
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = null;
        while ((s = br.readLine()) != null) {
            String[] s1 = s.split(" ");
            int N = Integer.valueOf(s1[0]);
            int M = Integer.valueOf(s1[1]);
            int T = Integer.valueOf(s1[2]);
            int[][] lunch = new int[N][2];
            int[][] dinner = new int[M][2];
            int max = Integer.MIN_VALUE;  // 中餐最大营养值
            int max2 = Integer.MIN_VALUE;  // 晚餐最大营养值
            for (int i = 0; i < N; i++) {
                s1 = br.readLine().split(" ");
                lunch[i][0] = Integer.valueOf(s1[0]);
                lunch[i][1] = Integer.valueOf(s1[1]);
                max = Math.max(max, lunch[i][1]);
            }
            for (int i = 0; i < M; i++) {
                s1 = br.readLine().split(" ");
                dinner[i][0] = Integer.valueOf(s1[0]);
                dinner[i][1] = Integer.valueOf(s1[1]);
                max2 = Math.max(max2, dinner[i][1]);
            }
            if (max + max2 < T) {
                System.out.println(-1);
                continue;
            }
            int res = function(lunch, dinner, T);
            System.out.println(res);
        }
        br.close();
    }
 
    private static int function(int[][] lunch, int[][] dinner, int t) {
        if (t == 0) return 0;
        int n = lunch.length;
        int m = dinner.length;
        int dis = Integer.MAX_VALUE;
        for (int i = 0; i < n; i++) {
            if (lunch[i][1] >= t) {
                dis = Math.min(dis, lunch[i][0]);
            }
            for (int j = 0; j < m; j++) {
                if (lunch[i][1] + dinner[j][1] >= t) {
                    dis = Math.min(dis, lunch[i][0] + dinner[j][0]);
                }
 
            }
        }
        for (int j = 0; j < m; j++) {
            if (dinner[j][1] >= t) {
                dis = Math.min(dis, dinner[j][0]);
            }
        }
        if (dis != Integer.MAX_VALUE) return dis;
        return -1;
    }
}

第四题土地种菜问题

能种的地方用’#'表示,每个地方中的菜不能和周围四个方向的菜相同,总共有6中菜可供选择,大概是这个意思,求出6*6矩阵中总共可能的次数
考完后磕了半天做出来了,题目用例都是对的,分享一下,不知道有没有人分享一下优化思路。

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
/*
用例1
##****
##****
******
******
******
******
* 630    1000000009
*
*
*
 */
/*
用例2
#*****
******
******
******
******
*****#
* 36
 
 */
 
/**
 * @Description:
 * @Create 2020-08-02 20:16
 * @Email:
 */
public class Main {
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = null;
        char[][] matrix = new char[6][6];
        while ((s = br.readLine()) != null) {
            matrix[0] = s.toCharArray();
            for (int i = 0; i < 5; i++) {
                matrix[i + 1] = br.readLine().toCharArray();
            }
            int res = function(matrix);
            System.out.println(res);
        }
        br.close();
    }
 
    static int[][] dd = new int[36][6];
    static int res = 0;
    static int Num = 0;
 
    private static int function(char[][] matrix) {
        res = 0;
        int num = 0;
        for (int i = 0; i < 6; i++) {
            for (int j = 0; j < 6; j++) {
                if (matrix[i][j] == '#') {
                    num++;
                }
            }
        }
        Num = num;
        backTrack(matrix, 0, 0, 0);
        return res;
    }
 
    private static void backTrack(char[][] matrix, int count, int row, int col) {
        if (count == Num) {
            res++;
            res %= 1000000009;
            return;
        }
        int before = row*6 + col;
        for (int i = 0; i < 6; i++) {
            for (int j = 0; j < 6; j++) {
                if (i * 6 + j < before) { // 保证往后遍历 避免重复
                    continue;
                }
                if (matrix[i][j] == '#') {
                    int index = i * 6 + j;
                    for (int t = 0; t < 6; t++) {
                        if (check(i, j, t)) {// 如果能放
                            matrix[i][j] = '*'; // 打个标记
                            dd[index][t] = 1;  // 记录这个位置中的植物
                            backTrack(matrix, count + 1, i, j);
                            dd[index][t] = 0;  // 撤销
                            matrix[i][j] = '#'; // 撤销
                        }
                    }
                }
            }
        }
        return;
    }
 
    // 周围四个方向
    static int[][] dir = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
 
    /**
     * 检查周围  看看当前位置能不能中这类植物
     *
     * @param row
     * @param col
     * @param kind
     * @return */
    private static boolean check(int row, int col, int kind) {
        for (int[] arr : dir) {
            int x = row + arr[0];
            int y = col + arr[1];
            if (x >= 0 && x < 6 && y >= 0 && y < 6) {
                int index = x * 6 + y;
                if (dd[index][kind] == 1) return false;
            }
        }
        return true;
    }
}

转自我的niuke贴子

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值