F - Rook on Grid 矩阵 侧面视角 树状数组

2024-08-29 06:52

本文主要是介绍F - Rook on Grid 矩阵 侧面视角 树状数组,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

两种走法
先下再右 吃到的就是L[i]-1个
先右再下 就吃剩的哈哈 每个L[i]挡住的阴影部分 才是有效的吃到部分
关于阴影 🔥可以想象从矩阵右侧有光线照进来。然后被障碍物挡住的那些空格。
处理方式可以按照列扫过去。一边用树状数组维护那些有阴影的行
实现的主要部分就是怎么去维护那些阴影。
小tip:>=r[i]都当做第一列开始就有阴影
题目

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define ll __int128_t
#define ar array<int, 2>
#define arr array<int, 3>
int  n, m, k, inf = 1LL << 61, mod = 998244353;// 1e9+7;
const int N = 5e5 + 50;
int tr[N + 1];
void add(int x, int v) {while (x <= N) {//这个N-1变量是开放的。。是个隐患。。tr[x] += v, x += x & (-x);}
}
int query(int x) {int s = 0;while (x) {s += tr[x], x -= x & (-x);}return s;
}
void solve() {cin >> n >> m >> k;vector<int>l(n + 1, m + 1), r(m + 1, n + 1);//这边我们统计非法的第一个位置for (int i = 1; i <= k; ++i) {int x, y;cin >> x >> y;l[x] = min(l[x], y);r[y] = min(r[y], x);}int ans = 0;vector<int>mp[m + 2];// 他有可能是m+1 。所以这里要开大点//计算 先下再右for (int i = 1; i < r[1]; ++i) { ans += l[i] - 1;mp[l[i]].push_back(i);}for (int i = r[1]; i <= n; ++i)//>=r[i]都当做第一列开始就有阴影mp[1].push_back(i);//先右再下for (int i = 1; i < l[1]; ++i) {ans += query(r[i] - 1);for (int j : mp[i])add(j, 1);}cout << ans;
};// 这题看似简单。。但是实际上是一类题目的典型处理方式。。signed main() {ios::sync_with_stdio(false);cin.tie(0);cout << fixed << setprecision(15);
#ifdef DEBUGfreopen("../1.in", "r", stdin);
#endif//init_f();//init();//expr();// int T; cin >> T; while(T--)solve();return 0;
}

这篇关于F - Rook on Grid 矩阵 侧面视角 树状数组的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1117152

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

hdu 4565 推倒公式+矩阵快速幂

题意 求下式的值: Sn=⌈ (a+b√)n⌉%m S_n = \lceil\ (a + \sqrt{b}) ^ n \rceil\% m 其中: 0<a,m<215 0< a, m < 2^{15} 0<b,n<231 0 < b, n < 2^{31} (a−1)2<b<a2 (a-1)^2< b < a^2 解析 令: An=(a+b√)n A_n = (a +

hdu 6198 dfs枚举找规律+矩阵乘法

number number number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Problem Description We define a sequence  F : ⋅   F0=0,F1=1 ; ⋅   Fn=Fn

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

Unity3D自带Mouse Look鼠标视角代码解析。

Unity3D自带Mouse Look鼠标视角代码解析。 代码块 代码块语法遵循标准markdown代码,例如: using UnityEngine;using System.Collections;/// MouseLook rotates the transform based on the mouse delta./// Minimum and Maximum values can

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };

PHP7扩展开发之数组处理

前言 这次,我们将演示如何在PHP扩展中如何对数组进行处理。要实现的PHP代码如下: <?phpfunction array_concat ($arr, $prefix) {foreach($arr as $key => $val) {if (isset($prefix[$key]) && is_string($val) && is_string($prefix[$key])) {$arr[