IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Codeforces Round #783 (Div. 2)A~C+leetcode每日一题(4.27) -> 正文阅读

[数据结构与算法]Codeforces Round #783 (Div. 2)A~C+leetcode每日一题(4.27)

leetcode每日一题

417. 太平洋大西洋水流问题

有一个 m × n 的矩形岛屿,与 太平洋 和 大西洋 相邻。 “太平洋” 处于大陆的左边界和上边界,而 “大西洋” 处于大陆的右边界和下边界。

这个岛被分割成一个由若干方形单元格组成的网格。给定一个 m x n 的整数矩阵 heights , heights[r][c] 表示坐标 (r, c) 上单元格 高于海平面的高度 。

岛上雨水较多,如果相邻单元格的高度 小于或等于 当前单元格的高度,雨水可以直接向北、南、东、西流向相邻单元格。水可以从海洋附近的任何单元格流入海洋。

返回 网格坐标 result 的 2D列表 ,其中 result[i] = [ri, ci] 表示雨水可以从单元格 (ri, ci) 流向 太平洋和大西洋 。
在这里插入图片描述

class Solution {
public:
    vector<vector<int>>heights;
    int dx[4]={-1,0,1,0};
    int dy[4]={0,1,0,-1};
    void dfs(int x,int y,vector<vector<bool>>&ocean)
    {
        ocean[x][y]=true;
        int m=ocean.size();
        int n=ocean[0].size();
        for(int i=0;i<4;i++)
        {
            int a=dx[i]+x,b=dy[i]+y;
            if(a<0||a>=m||b<0||b>=n)continue;
            if(ocean[a][b])continue;
            if(heights[a][b]<heights[x][y])continue;
            ocean[a][b]=true;
            dfs(a,b,ocean);
        }
    }
    vector<vector<int>> pacificAtlantic(vector<vector<int>>& heights) {
        this->heights=heights;
        int m=heights.size();
        int n=heights[0].size();
        vector<vector<bool>>pacific(m,vector<bool>(n,false)),atlantic(m,vector<bool>(n,false));
        vector<vector<int>>res;
        for(int i=0;i<m;i++)dfs(i,0,pacific);
        for(int i=0;i<n;i++)dfs(0,i,pacific);
        for(int i=0;i<m;i++)dfs(i,n-1,atlantic);
        for(int i=0;i<n;i++)dfs(m-1,i,atlantic);
        for(int i=0;i<m;i++)
            for(int j=0;j<n;j++)
                if(pacific[i][j]&&atlantic[i][j])
                {
                    vector<int>v;
                    v.push_back(i),v.push_back(j);
                    res.push_back(v);
                }
        return res;
    }
};

Codeforces Round #783 (Div. 2)

A. Direction Change

You are given a grid with n rows and m columns. Rows and columns are numbered from 1 to n, and from 1 to m. The intersection of the a-th row and b-th column is denoted by (a,b).
Initially, you are standing in the top left corner (1,1). Your goal is to reach the bottom right corner (n,m).
You can move in four directions from (a,b): up to (a?1,b), down to (a+1,b), left to (a,b?1) or right to (a,b+1).
You cannot move in the same direction in two consecutive moves, and you cannot leave the grid. What is the minimum number of moves to reach (n,m)?
Input
The input consists of multiple test cases. The first line contains a single integer t (1≤t≤103) — the number of the test cases. The description of the test cases follows.
The first line of each test case contains two integers n and m (1≤n,m≤109) — the size of the grid.
Output
For each test case, print a single integer: ?1 if it is impossible to reach (n,m) under the given conditions, otherwise the minimum number of moves.

#include <bits/stdc++.h>
using namespace std;
int _;
int n,m;
void solve()
{
	cin>>n>>m;
	if(n<m)swap(n,m);
	if(m==1&&n>=3)
	{
		cout<<-1<<endl;
	}
	else
	{
		if((n+m)%2==0)
		{
			cout<<2*(m-1)+2*(n-m)<<endl;
		}
		else cout<<2*(m-1)+2*(n-m-1)+1<<endl;
	}
}
int main()
{
	cin>>_;
	while(_--)solve();
	return 0;
}

B. Social Distance

m chairs are arranged in a circle sequentially. The chairs are numbered from 0 to m?1. n people want to sit in these chairs. The i-th of them wants at least a[i] empty chairs both on his right and left side.
More formally, if the i-th person sits in the j-th chair, then no one else should sit in the following chairs: (j?a[i])modm, (j?a[i]+1)modm, … (j+a[i]?1)modm, (j+a[i])modm.
Decide if it is possible to sit down for all of them, under the given limitations.
Input
The input consists of multiple test cases. The first line contains a single integer t (1≤t≤5?104) — the number of test cases. The description of the test cases follows.
The first line of each test case contains two integers n and m (2≤n≤105, 1≤m≤109) — the number of people and the number of chairs.
The next line contains n integers, a1, a2, … an (1≤ai≤109) — the minimum number of empty chairs, on both sides of the i-th person.
It is guaranteed that the sum of n over all test cases will not exceed 105.
Output
For each test case print “YES” (without quotes) if it is possible for everyone to sit down and fulfil the restrictions, and “NO” (without quotes) otherwise.
You may print every letter in any case you want (so, for example, the strings “yEs”, “yes”, “Yes” and “YES” will all be recognized as positive answers).

#include <bits/stdc++.h>
using namespace std;
int _;
int n,m;
void solve()
{
	cin>>n>>m;
	long long sum=0,maxv=0,minv=1e9;
	for(int i=1;i<=n;i++)
	{
		long long x;
		cin>>x;
		sum+=x;
		minv=min(minv,x);
		maxv=max(maxv,x);
	}
	if(n+sum+maxv-minv<=m)puts("YES");
	else puts("NO");
}
int main()
{
	cin>>_;
	while(_--)solve();
	return 0;
}

C. Make it Increasing

You are given an array a consisting of n positive integers, and an array b, with length n. Initially bi=0 for each 1≤i≤n.
In one move you can choose an integer i (1≤i≤n), and add ai to bi or subtract ai from bi. What is the minimum number of moves needed to make b increasing (that is, every element is strictly greater than every element before it)?
Input
The first line contains a single integer n (2≤n≤5000).
The second line contains n integers, a1, a2, …, an (1≤ai≤109) — the elements of the array a.
Output
Print a single integer, the minimum number of moves to make b increasing.

#include <bits/stdc++.h>
using namespace std;
const int N=5010;
int a[N];
int _;
int n;
void solve()
{
	cin>>n;
	for(int i=1;i<=n;i++)cin>>a[i];
	long long res=1e18;
	for(int i=1;i<=n;i++)
	{
		long long pre=0,sum=0;
		for(int j=i-1;j>=1;j--)
		{
			pre+=a[j]-pre%a[j];
			sum+=pre/a[j];
		}
		pre=0;
		for(int j=i+1;j<=n;j++)
		{
			pre+=a[j]-pre%a[j];
			sum+=pre/a[j];
		}
		res=min(res,sum);
	}
	cout<<res<<endl;
}
int main()
{
	solve();
	return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-28 12:04:59  更:2022-04-28 12:05:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 6:27:44-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码