這是一幅心理陰影面積圖。咱們都覺得本身能夠勻速前進(圖中藍色直線),而拖延症晚期的咱們每每執行的是最後時刻的瘋狂趕工(圖中的紅色折線)。由紅、藍線圍出的面積,就是咱們在作做業時的心理陰影面積。ios
現給出紅色拐點的座標 (,要求你算出這個心理陰影面積。spa
輸入格式:
輸入在一行中給出 2 個不超過 100 的正整數 x 和 y,而且保證有 x>y。這裏假設橫、縱座標的最大值(即截止日和最終完成度)都是 100。3d
輸出格式:
在一行中輸出心理陰影面積。code
友情提醒:三角形的面積 = 底邊長 x 高 / 2;矩形面積 = 底邊長 x 高。嫑想得太複雜,這是一道 5 分考減法的題……blog
輸入樣例:
90 10
輸出樣例:
4000
思路:小學數學題,略水略水......
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<map> 6 #include<set> 7 #include<vector> 8 using namespace std; 9 #define ll long long 10 #define dd cout<<endl 11 const int inf=99999999; 12 const int mod=1e9+7; 13 const int maxn=1e5+7; 14 int main() 15 { 16 int x,y; 17 cin>>x>>y; 18 int area=100*100/2-x*y/2-(100-x)*y-(100-x)*(100-y)/2; 19 cout<<area<<endl; 20 return 0; 21 }