Given an array of integers (0indexed), you have to perform two types of queries in the array.
1.1 i j v- change the value of the elements fromithindex tojthindex tov.
2.2 i j- find the average value of the integers fromithindex tojthindex.
You can assume that initially all the values in the array are0.
Input
Input starts with an integerT (≤ 5), denoting the number of test cases.
Each case contains two integers:n (1 ≤ n ≤ 105), q (1 ≤ q ≤ 50000), wherendenotes the size of the array. Each of the nextqlines will contain a query of the form:
1 i j v (0 ≤ i ≤ j < n, 0 ≤ v ≤ 10000)
2 i j (0 ≤ i ≤ j < n)
Output
For each case, print the case number first. Then for each query of the form'2 i j'print the average value of the integers fromitoj. If the result is an integer, print it. Otherwise print the result
in'x/y'form, wherexdenotes the numerator andydenotes the denominator of the result andxandyare relatively prime.
Sample Input
|
Output for Sample Input
|
1
10 6
1 0 6 6
2 0 1
1 1 1 2
2 0 5
1 0 3 7
2 0 1
|
Case 1:
6
16/3
7
|
Note
Dataset is huge. Use faster i/o methods.
题意:给定一个序列,要求可以成段更新和求区间的平均数。
分析:稍微做了点变化,要求输出最简分式,用gcd约下分就可以了。
线段树:点树-成段更新-区间询问。
代码:
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int MAXN = 111111;
int sum[MAXN<<2],cov[MAXN<<2],t,n,q;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
void build(){
memset(sum,0,sizeof(sum));
memset(cov,-1,sizeof(cov));
}
void pushDOWN(int rt,int l,int r){
if(cov[rt]!=-1){
int m = (l+r)>>1;
sum[rt<<1] = (m-l+1)*cov[rt];
sum[rt<<1|1] = (r-m)*cov[rt];
cov[rt<<1] = cov[rt<<1|1] = cov[rt];
cov[rt] = -1;
}
}
void pushUP(int rt){
sum[rt] = sum[rt<<1] + sum[rt<<1|1];
}
void update(int L,int R,int c,int l,int r,int rt){
if(L<=l&&R>=r){
cov[rt] = c;
sum[rt] = (r-l+1)*c;
return;
}
pushDOWN(rt,l,r);
int m = (l+r)>>1;
if(m>=L)update(L,R,c,lson);
if(m<R)update(L,R,c,rson);
pushUP(rt);
}
int query(int L,int R,int l,int r,int rt){
if(L<=l&&R>=r){
return sum[rt];
}
pushDOWN(rt,l,r);
int m = (l+r)>>1,ret = 0;
if(m>=L)ret+=query(L,R,lson);
if(m<R)ret+=query(L,R,rson);
pushUP(rt);
return ret;
}
int gcd(int a,int b){
return ((a%b)==0)?b:gcd(b,a%b);
}
void print(int cas,int mo,int so){
int div = gcd(mo,so);
mo/=div;so/=div;
if(so==1){
printf("%d\n",mo);
}else if(mo!=0){
printf("%d/%d\n",mo,so);
}else{
printf("%d\n",0);
}
}
int main(){
scanf("%d",&t);
for(int cas=1;cas<=t;cas++){
scanf("%d%d",&n,&q);
build();
printf("Case %d:\n",cas);
while(q--){
int a,b,c,d;
scanf("%d",&a);
if(a==1){
scanf("%d%d%d",&b,&c,&d);
update(b,c,d,0,n-1,1);
}else{
scanf("%d%d",&b,&c);
int mo = query(b,c,0,n-1,1);
print(cas,mo,(c-b+1));
}
}
}
return 0;
}
相关推荐
【标题】"LightOJ-Solved-Code"指的是一个关于在Light Online Judge平台上解决编程问题的代码集合。这个集合很可能包含了作者在LightOJ上解答各类算法问题的C++源代码。LightOJ是一个在线的编程竞赛平台,它提供了一...
标题中的“lightoj-tutorial-editorial-by-sayeed”指的是LightOJ(Light Online Judge)平台上的一篇教程或社论,由用户Sayeed撰写,旨在帮助用户了解如何在LightOJ上创建类似于Codeforces编辑模式的教程。...
【标题】"LightOJ-solutions" 是一个与编程竞赛相关的资源,主要包含了参与 LightOJ(Light Online Judge)平台的解题方案。这个压缩包很可能是某位参赛者或编程爱好者整理的代码集合,旨在分享他们在解决 LightOJ ...
leetcode中国 数据结构和算法编码 议程 :balloon: 不是为了比赛,而是为了训练和兴趣。 Python3 你可以在这里找到我的 LeetCode 解决方案:(等待打开) ...LightOJ 1012 --- dfs transform 13. HDU 1495 --- compl
"LightOJ"是一个在线判题系统,专为竞赛编程和算法训练而设计。它允许用户提交代码并立即获得运行结果、时间复杂度和空间复杂度等反馈。这个平台广泛支持多种编程语言,包括C++,因此在标签中提到了"C++"。现在我们...
解析编程问题,并将其发送给CHelper插件以实现IntelliJ IDEA。 竞争性伴侣解析程序...-HackerRank-HDU在线法官-Kattis-LightOJ-NYTD在线法官-PEG法官-POJ-QDUOJ-Timus-URI在线法官 支持语言:English (United States)
LightOJ是一个在线编程竞赛平台,它为程序员和计算机科学爱好者提供了一系列的算法问题来解决。这个存储库是一个专门针对LightOJ问题的教程集合,旨在帮助用户更好地理解和解决这些问题。下面,我们将深入探讨其中...
【压缩包子文件的文件名称列表】"LightOJ-master"可能是一个Git仓库的名称,暗示了这个问题解决方案可能是开源的,并且包含了一个项目的主分支。通常,这样的仓库会包含源代码、文档、测试用例和其他资源,帮助用户...
leetcode 2 和 c 动态规划 动态规划相关问题的解答。 这些问题来自各种在线评委,包括 、 、 等。 解决方案是用 C++ 编码的。 —— —— —— —— —— —— —— —— —— —— —— —— ...——
已解决的编程问题 Online Judges 这个存储库包含我解决的各种在线法官的编程问题的解决方案,即 UVa、Topcoder、Codeforces、Hackerrank、LightOj、Spoj、Project Euler 等。
- **熟悉基础算法和数据结构**:了解并掌握排序、搜索、图论、动态规划等基础算法,同时理解链表、树、队列、堆等数据结构的实现和应用。 - **练习编程技巧**:通过解决实际问题来提高编程技巧,注意代码的效率、...
这是乔杜里医学博士。 伊斯玛姆·拉赫曼(Ishmam Rahman) :closed_mailbox_with_raised_flag: 联络我: ... LightOJ: ://lightoj.com/user/ishmam64 脸书: : 目标:使自己在新技术的海洋中立足,在这里我可
描述中提到的“uva”,“lightoj”,“spoj”,“timus”都是知名的在线编程竞赛平台,它们为程序员提供了各种算法和逻辑思维的练习题目。 在这个项目的压缩包 "solving-oj-problems-master" 中,我们可以推测它...
这个仓库是关于什么的 创建该存储库是为了组织与数据结构和算法有关的问题的解决方案。 并且,如果可能的话,为学习与数据结构和算法有关的各种概念提供一种更简单的方法。 以下评委使用的问题 ...
race_words = [“后缀数组”,“前缀特里”,“动态编程”,“竞赛”,“ codeforces”,“编程”,“竞争性编程”,“算法”,“数据结构”,“ codeforces”,“ light oj”,“ lightoj”,“ spoj”,“堆栈”,...
开心农场java源码AA Noman Ansary 你好呀! 我的名字是AA Noman Ansary 。 但我更喜欢被称为Showrav...问题解决:LightOJ。 代码部队。 蒂姆斯。 紫外线。 成就 以下是我的一些显著成就: BRAC 大学副校长证书。 (2019)
测试程序TestProgram 是针对竞争性编程程序(即 Codeforces、lightOJ、OmegaUp 等)的专用测试工具。 当我们解决问题时,我们必须非常小心,并致力于解决所有可能的情况。 我们的解决方案在登顶前正确解决的测试用例...