UVA 12501 Bulky process of bulk reduction ——(線段樹成段更新)

  和普通的線段樹不同的是,查詢x~y的話,給出的答案是第一個值的一倍加上第二個值的兩倍一直到第n個值的n倍。

  思路的話,就是關于query和pushup的方法。用一個新的變量sum記錄一下這個區間里面按照答案給出的方式的值,比如說,這個節點的區間是1~3,那么這個節點的sum值就是(1*val[1]+2*val[2]+3*val[3])。那么對于pushup操作,當前這個節點的sum值是左邊的sum值+左邊的區間長度*右邊的c值(c值代表的是這個區間的所有元素的和)+右邊的sum值。這樣的話就相當于右邊的sum升高了需要的高度,就滿足題意了。

  另外關于query也是類似,要返回時,加上(l-ql)倍的c[o]的值就行了,這樣就相當于右邊的sum升高了(l-ql)的高度了。如果不能理解,可以手動模擬一下試試。

  但是這題WA了好多次,,因為我現在才知道原來uva的long long得用lld,QAQ。。。

  具體見代碼:

?

 1 #include <stdio.h>
 2 #include <algorithm>
 3 #include <string.h>
 4 #define t_mid (l+r>>1)
 5 #define ls o<<1
 6 #define rs o<<1 | 1
 7 #define lson ls,l,t_mid
 8 #define rson rs,t_mid+1,r
 9 using namespace std;
10 typedef long long ll;
11 
12 const int N = 100000 + 5;
13 ll c[N<<2],sum[N<<2],add[N<<2];
14 
15 void pushup(int o,int len){c[o]=c[ls]+c[rs];sum[o]=sum[ls]+c[rs]*len+sum[rs];}
16 
17 void build(int o,int l,int r)
18 {
19     add[o]=0;
20     if(l==r) {c[o]=sum[o]=100;return;}
21     build(lson);
22     build(rson);
23     pushup(o,t_mid-l+1);
24 }
25 
26 void pushdown(int o,int len)
27 {
28     if(add[o])
29     {
30         int llen=(len-(len>>1)),rlen=(len>>1);
31         add[ls] += add[o];
32         add[rs] += add[o];
33         c[ls] += add[o]*llen;
34         c[rs] += add[o]*rlen;
35         sum[ls] += add[o]*(llen)*(llen+1)/2;
36         sum[rs] += add[o]*(rlen)*(rlen+1)/2;
37         add[o]=0;
38     }
39 }
40 
41 void update(int o,int l,int r,int ql,int qr,int dt)
42 {
43     if(ql <= l && qr >= r)
44     {
45         add[o] += (ll)dt;
46         c[o] += (ll)dt*(r-l+1);
47         sum[o] += (ll)dt*(r-l+1)*(r-l+2)/2;
48         return;
49     }
50     pushdown(o,r-l+1);
51     if(ql <= t_mid) update(lson,ql,qr,dt);
52     if(qr >t_mid) update(rson,ql,qr,dt);
53     pushup(o,t_mid-l+1);
54 }
55 
56 ll query(int o,int l,int r,int ql,int qr)
57 {
58     if(ql <= l && qr >= r)
59     {
60         return (l-ql)*c[o]+sum[o];
61     }
62     pushdown(o,r-l+1);
63     ll res = 0;
64     if(ql <= t_mid) res += query(lson,ql,qr);
65     if(qr > t_mid) res += query(rson,ql,qr);
66     return res;
67 }
68 
69 int main()
70 {
71     int T;
72     scanf("%d",&T);
73     for(int kase=1;kase<=T;kase++)
74     {
75         printf("Case %d:\n",kase);
76         int n,m;
77         scanf("%d%d",&n,&m);
78         build(1,1,n);
79 
80         while(m--)
81         {
82             char s[10];
83             scanf("%s",s);
84             if(s[0]=='c')
85             {
86                 int x,y,dt;
87                 scanf("%d%d%d",&x,&y,&dt);
88                 update(1,1,n,x,y,dt);
89             }
90             else
91             {
92                 int x,y;
93                 scanf("%d%d",&x,&y);
94                 printf("%lld\n",query(1,1,n,x,y));
95             }
96         }
97     }
98 }

?

轉載于:https://www.cnblogs.com/zzyDS/p/5649009.html

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/542989.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/542989.shtml
英文地址,請注明出處:http://en.pswp.cn/news/542989.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

gdb ldexp_帶有Python示例的math.ldexp()方法

gdb ldexpPython math.ldexp()方法 (Python math.ldexp() method) math.ldexp() method is a library method of math module, it is used to calculate expression x*(2**i), where x is a mantissa and i is an exponent. It accepts two numbers (x is either float or inte…

windows安裝包刪了會有影響嗎_win7系統刪除系統更新安裝包的詳細教程

win7系統使用久了&#xff0c;好多網友反饋說win7系統刪除系統更新安裝包的問題&#xff0c;非常不方便。有什么辦法可以永久解決win7系統刪除系統更新安裝包的問題&#xff0c;面對win7系統刪除系統更新安裝包的圖文步驟非常簡單&#xff0c;只需要1.其實在win7旗艦版系統中&a…

解壓android img文件怎么打開,解壓壓縮android img文件

boot.imgboot和recovery映像并不是一個完整的文件系統&#xff0c;它們是一種android自定義的文件格式&#xff0c;該格式包括了2K的文件頭&#xff0c;后面緊跟著是用gzip壓縮過的內核&#xff0c;再后面是一個ramdisk內存盤&#xff0c;ramdisk映像是一個最基礎的小型文件系統…

Java String 學習筆記 (一)

2019獨角獸企業重金招聘Python工程師標準>>> ###String 簡介 String 并非java的8大基本數據類型之一。 java中基本數據類型存儲在棧內存中。而String不是&#xff0c;新new的String 對象存儲在堆內存中。而字符串存儲在常量池中。String對象的引用存儲中棧內存中。 …

tau nb_math.tau常數,帶Python示例

tau nbPython math.tau常數 (Python math.tau constant) math.tau constant is a predefined constant, which is defined in math module, it returns the value of mathematical constant "τ" (Tau), the value is 6.283185307179586 math.tau常數是在數學模塊中定…

pcl畫圓球_PCL之軌跡繪制(二)

之前學習點云庫做一些簡單的應用都是直接復制demo的代碼&#xff0c;然后把導入文件改一下&#xff0c;今天嘗試自己寫一些程序&#xff0c;結果錯漏百出&#xff0c;難受的早上&#xff0c;不過堅持了下來&#xff0c;求夸&#xff5e;&#xff5e;&#xff5e;這個主要是一個…

note2 android4.3,玩家們動手吧 Note2安卓4.3固件已泄漏

【PConline 資訊】最近各個牌子的安卓機迎來了升級安卓4.3的大潮&#xff0c;現在三星Galaxy Note2的安卓4.3固件已經泄漏出來了。實際上&#xff0c;此前三星官方已經確認&#xff0c;Galaxy Note3可以獲得官方的安卓4.3固件升級&#xff0c;但具體日期沒有確定&#xff0c;只…

SDP學習筆記

一、SDP規范了回話描述的格式&#xff0c;一般結合會話協議共同工作。 常見的會話傳送協議包括:SAP(Session Announcement Protocol 會話公告協議),SIP,RTSP,HTTP,和使用MIME的E-Mail。 &#xff08;PS&#xff1a;對SAP只能包含一個會話描述,其它會話協議的SDP可包含多個會話描…

sinh_帶有Python示例的math.sinh()方法

sinhPython math.sinh()方法 (Python math.sinh() method) math.sinh() method is a library method of math module, it is used to get the hyperbolic sine of given number in radians, it accepts a number and returns hyperbolic sine. math.sinh()方法是數學模塊的庫方…

android serviceconnection unbind流程,Android unbindService 流程分析

基于Android 6.0的源碼剖析&#xff0c; 分析bind service的啟動流程。/frameworks/base/core/java/android/app/ContextImpl.java/frameworks/base/core/java/android/app/LoadedApk.java/frameworks/base/core/java/android/app/IServiceConnection.aidl(自動生成Binder兩端)…

【JUnit 報錯】 method initializationerror not found:JUnit4單元測試報錯問題

今天是用JUnit測試一段代碼&#xff0c;報錯method initializationerror not found:&#xff1a;出現如下問題&#xff1a; 雙擊這個就顯示出現如下的錯誤&#xff1a; 查詢網上&#xff0c;說是junit版本的問題&#xff1a; 那我就不使用JUnit這個Libernary了&#xff0c;下載…

flash 不顯示 旋轉 補間動畫_【圖片】Flash入門5:詳解制作補間動畫(非傳統補間)【flash軟件吧】_百度貼吧...

該樓層疑似違規已被系統折疊 隱藏此樓查看此樓●●關于補間動畫●●●1、準備事項注意&#xff1a;像 Flash 中的大多數內容一樣&#xff0c;動畫不需要任何 ActionScript。然而&#xff0c;如果您愿意&#xff0c;您可以使用 ActionScript 創建動畫。在創建補間之前&#xff0…

math.ceil帶小數點_Python中帶有示例的math.ceil()方法

math.ceil帶小數點Python math.ceil()方法 (Python math.ceil() method) math.ceil() method is a library method of math module, it is used to get the ceil value of a given number, it accepts a number/numeric expression and returns the smallest integral value wh…

將byte數組以html形式輸出到頁面,java 數組顯示到html

java 數組顯示到html[2021-02-05 01:08:54] 簡介:php去除nbsp的方法&#xff1a;首先創建一個PHP代碼示例文件&#xff1b;然后通過“preg_replace("/(\s|\&nbsp\;| |\xc2\xa0)/", " ", strip_tags($val));”方法去除所有nbsp即可。推薦&#xff1a;…

JDK各版本新增的主要特性

JDK1.5新特性&#xff1a; 1.自動裝箱與拆箱&#xff1a; 2.枚舉 3.靜態導入&#xff0c;如&#xff1a;import staticjava.lang.System.out 4.可變參數&#xff08;Varargs&#xff09; 5.內省&#xff08;Introspector&#xff09;&#xff0c;主要用于操作JavaBean中的屬性&…

oracle 導入sql文件 漢字亂碼_將現有的sql腳本導入 Oracle 數據庫,中文亂碼問題...

將現有的sql 腳本導入 Oracle數據庫比如 在windows 系統下&#xff0c;可以寫一個 bat 來實現直接導入如&#xff1a;bat 中的內容如下&#xff0c;logs.log 將會記錄執行日志sqlplus user/passworddbname create.sql > logs.logcreate.sql 中的內容可以是需要執行的sql 語句…

html圖片多邊形怎么寫,使用CSS3構建的圖像多邊形裁剪動畫特效

CSS語言&#xff1a;CSSSCSS確定html {background: #333;}.polygon {-webkit-clip-path: polygon(50% 0%, 79.38926% 9.54915%, 97.55283% 34.54915%, 97.55283% 65.45085%, 79.38926% 90.45085%, 50% 100%, 20.61074% 90.45085%, 2.44717% 65.45085%, 2.44717% 34.54915%, 20.…

python函數示例_帶Python示例的complex()函數

python函數示例Python complex()函數 (Python complex() function) complex() function is a library function in Python, it is used to get the complex number from given a real number or/and an imaginary number (which is an optional part), it accepts either a rea…

windows 下 git 禁用 CRLF 轉換 LF

2019獨角獸企業重金招聘Python工程師標準>>> windows中的換行符為 CRLF&#xff0c; 而在linux下的換行符為LF&#xff0c;所以在執行add . 時出現提示&#xff0c;解決辦法&#xff1a; 刪除根目錄 .git 文件夾禁用自動轉換 > git config --global core.autocrl…

cmd執行sql文件路徑 oracle_oracle 基礎 執行sql文件

Oracle執行外部文件&#xff1a;sql>new.sql執行多個sql文件:1.把所有的文件都放在同一個目錄下&#xff0c;然后在命令行里執行命令&#xff1a;c:>dir/b > d:/1.sql會把所有的sql文件名都輸出到一個sql文件中。2.用UltraEdit打開生成的sql文件&#xff0c;altC切換到…