Codeforces-1082A & 1073A & 330B & GYM101502I

17 篇文章 1 订阅
10 篇文章 0 订阅

Codeforces-1082A & 1073A & 330B & GYM101502I


Codeforces-1082A - Vasya and Book

题目链接
题目大意

就是给你四个数nxyd,在可以将这个四个数看做在一个坐标轴上,要你从x位置走到y位置,每次只能走d步,然后如果超过了边界就直接走到边界,问你从x走到y位置的最小步数;

在这里插入图片描述

解析

其实很简单,如果间隔距离刚好是d的整数倍,就肯定不要碰到两边,直接他们之间的距离/d就是答案,然后就走两边的情况,直接取一个最小值即可,这题wa了很多次,没注意x > y的情况。。。

#include <bits/stdc++.h>

int main(int argc, char const **argv)
{ 
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    int t, n, x, y, d;
    for(std::cin >> t; t--; ){ 
        std::cin >> n >> x >> y >> d;
        if(x == y){ 
            std::cout << 0 << std::endl;
            continue;
        }
        if( abs(y-x)%d == 0) // notice abs , wrong answer so many times!!!!
            std::cout << abs(y-x)/d << std::endl;
        else {
            int back = (x-1)%d == 0 ? (x-1)/d : (x-1)/d+1;
            int forward = (y-1)/d;
            int back2 = (n-y)/d;
            int forward2 = (n-x)%d == 0 ? (n-x)/d : (n-x)/d+1;
            if( (y-1)%d && (n-y)%d ) 
                std::cout << -1 << std::endl;
            else if( (y-1)%d == 0 && (n-y)%d == 0)
                std::cout << std::min(back+forward, back2+forward2) << std::endl;
            else if( (y-1)%d == 0)
                std::cout << back+forward << std::endl;
            else 
                std::cout << back2+forward2 << std::endl;
        }
    }
    return 0;
}

Codeforces - 1073A - Diverse Substring

题目链接
题目大意

给你一个字符串s,求是否存在一个子串sub_str。满足sub_str中每个字母出现的次数都<=strlen(sub_str)
在这里插入图片描述

解析

这个题目一开始没有读懂,导致wa了挺多次,也是稍微有一些技巧,直接转换成判断相邻两个是否相同即可,如果任意两个都相等的话,就没有存在这样的子串。如果存在,就输出相邻的两个即可。

#include <bits/stdc++.h>
const int MAX = 26;

int main(int argc, char const **argv)
{ 
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    int n, c[MAX];
    std::cin >> n;
    char* str = new char[n];
    std::cin >> str;
    for(int i = 0; i < n-1; i++){ 
        if(str[i] != str[i+1]){ // 找到任意一个相邻的即可 
            std::cout << "YES" << std::endl;
            std::cout << str[i] << str[i+1] << std::endl;
            return 0;
        }  
    }
    std::cout << "NO" << std::endl;
    return 0;
}

Codeforces - 330B - Road Construction

题目链接
题目大意

给你nmn代表n个顶点,m代表的是m条边,下面m行每行两个数tofrom,代表不能将tofrom连接起来,问你最少需要连接多少对顶点,可以使得每个顶点到图中的任意一个顶点最多只需要两步,输出最少对数,以及连接的顶点,只需要输出任意一种方案。

在这里插入图片描述

解析
  • 首先要做到这个要求,一定需要连接n-1条边;
  • 知道了一定是n-1之后,只需要找出一个没有在输入数据中出现的顶点,然后从这个和每一个顶点都连接一条边即可;
import java.io.BufferedInputStream;
import java.util.Scanner;

public class Main {

    public static void main(String[] args){
        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        int n = cin.nextInt(), m = cin.nextInt();
        boolean[] cant = new boolean[n+1]; // 1~n
        for(int i = 0; i < m; i++){
            int to = cin.nextInt();
            int from = cin.nextInt();
            cant[to] = true;
            cant[from] = true;
        }
        int conn = 0;
        for(int i = 1; i <= n; i++){
            if(!cant[i]){
                conn = i;
                break;
            }
        }
        System.out.println(n-1); 
        for(int i = 1; i <= n; i++){
            if(conn != i)
                System.out.println(conn + " " + i);
        }
    }
}


GYM - 101502I - Move Between Numbers

题目链接
题目大意

就是给你nsen代表的是有多少个字符串,下面每一个字符串可以看做是图上的一个顶点,如果两个字符串之间满足题目所给的那个条件,即: 两个字符串的相同的字符个数的数目sum = 17(可以这样理解,就是题目那个等式的意思),两个字符串(顶点)就可以相互到达,问从se最少的步数mindistance

在这里插入图片描述

解析

编写一个函数判断两个点是否可以相互到达,然后用dijkstra模板跑一下即可。

import java.io.BufferedInputStream;
import java.util.*;

public class Main {

    static int n; // vertex num
    static int m; // edge num
    static boolean[] vis;
    static ArrayList<Edge>[] G;

    static class Edge implements Comparable<Edge> {
        public int to;
        public int w;

        public Edge(int to, int w) {
            this.to = to;
            this.w = w;
        }

        @Override
        public int compareTo(Edge o) {
            return w - o.w;
        }
    }

    static boolean common(String a, String b) {
        int[] ca = new int[10];
        int[] cb = new int[10];
        for (int i = 0; i < a.length(); i++) {
            ca[a.charAt(i) - '0']++;
            cb[b.charAt(i) - '0']++;
        }
        int sum = 0;
        for (int i = 0; i < 10; i++)
            sum += Math.min(ca[i], cb[i]);
        return sum == 17;
    }

    static int[] dijkstra(int start) {
        PriorityQueue<Edge> pq = new PriorityQueue<>();
        int[] dis = new int[n + 1];
        for (int i = 0; i <= n; i++)
            dis[i] = Integer.MAX_VALUE;
        dis[start] = 0;
        // G.vis[str] = true; // 下面Queue还要访问start
        pq.add(new Edge(start, 0)); //自环边
        while (!pq.isEmpty()) {
            Edge curEdge = pq.poll();
            int to = curEdge.to;
            if (vis[to])
                continue;
            vis[to] = true;
            for (int i = 0; i < G[to].size(); i++) {
                int nxtNode = G[to].get(i).to;
                int nxtW = G[to].get(i).w;
                if (!vis[nxtNode] && dis[nxtNode] > dis[to] + nxtW) {
                    dis[nxtNode] = dis[to] + nxtW;
                    pq.add(new Edge(nxtNode, dis[nxtNode]));
                }
            }
        }
        return dis;
    }

    public static void main(String[] args) {

        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        int T = cin.nextInt();
        while (T-- > 0) {
            n = cin.nextInt();
            int s = cin.nextInt();
            int e = cin.nextInt();
            String[] str = new String[n];
            for (int i = 0; i < n; i++)
                str[i] = cin.next();
            G = new ArrayList[n + 1];
            vis = new boolean[n + 1];
            for (int i = 0; i <= n; i++) {
                G[i] = new ArrayList<>();
                vis[i] = false;
            }
            for (int i = 0; i < n; i++) {
                for (int j = i + 1; j < n; j++) {
                    if (common(str[i], str[j])) {
                        G[i + 1].add(new Edge(j + 1, 1)); // notice i+1, j+1
                        G[j + 1].add(new Edge(i + 1, 1));
                    }
                }
            }
            int[] dis = dijkstra(s);
            System.out.println(dis[e] == Integer.MAX_VALUE ? -1 : dis[e]);
        }
    }
}

C++代码:

#include <bits/stdc++.h>

const int maxn = 251;
const int INF = 1e9;

class Edge{
public:
    int to, w;
    Edge(int to, int w):to(to), w(w){}
    // bool operator < (const Edge& rhs) const {
    //     return w > rhs.w;
    // }
};

bool operator < (const Edge& ea, const Edge& eb){ 
    return ea.w > eb.w;
}

std::vector<Edge>G[maxn];
bool vis[maxn];
int dis[maxn];

bool common(char *s1,char *s2){
    int len = strlen(s1);
    int a[10] = {0}, b[10] = {0};
    for(int i = 0; i < len; i++)a[s1[i]-'0']++;
    for(int i = 0; i < len; i++)b[s2[i]-'0']++;
    int sum = 0;
    for(int i = 0; i <= 9; i++)
        sum += std::min(a[i], b[i]);
    return sum == 17;
}

int dijkstra(int s, int e, int n){
    // priority_queue<Type, Container, Functional>
    // priority_queue使用: https://blog.csdn.net/bat67/article/details/77585312
    std::priority_queue<Edge>pq; //比较方式默认用 operator< ,所以俩个参数缺省的话,优先队列就是大顶堆,队头元素最大。
    for(int i = 0; i < n; i++) dis[i] = INF;
    dis[s] = 0;
    pq.push(Edge(s, 0));
    // vis[d] = true;
    while(!pq.empty()){
        Edge cur = pq.top(); pq.pop();
        int to = cur.to;
        if(vis[to])
            continue;
        vis[to] = true;
        for(int i = 0; i < G[to].size(); i++){
            int to2 = G[to][i].to;
            int w = G[to][i].w;
            if(!vis[to2] && dis[to2] > w+dis[to]){
                dis[to2] = w+dis[to];
                pq.push(Edge(to2, dis[to2]));
            }
        }
    }
    return dis[e];
}

int main(){
    int T, n, m, s, e;
    char str[250][25];
    std::cin >> T;
    while(T--){
        std::cin >> n >> s >> e;
        for(int i = 0; i < n; i++)
            std::cin >> str[i];
        for(int i = 0; i < n; i++) G[i].clear();
        for(int i = 0; i < n; i++) vis[i] = false;
        for(int i = 0; i < n; i++){
            for(int j = i+1; j < n; j++){
                if(common(str[i], str[j])){
                    G[i].push_back(Edge(j,1));
                    G[j].push_back(Edge(i,1));
                }
            }
        }
        int res = dijkstra(s-1,e-1, n); // notice index
        std::cout << (res == INF ? -1 : res) << std::endl;
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值