日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【测试点2超时问题】1046 Shortest Distance (20 分)_21行代码AC

發布時間:2024/2/28 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【测试点2超时问题】1046 Shortest Distance (20 分)_21行代码AC 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

立志用最少的代碼做最高效的表達


PAT甲級最優題解——>傳送門


The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of exits.

Input Specification:
Each input file contains one test case. For each case, the first line contains an integer N (in [3,10?5??]), followed by N integer distances D?1?? D?2?? ? D?N??, where D?i?? is the distance between the i-th and the (i+1)-st exits, and D?N?? is between the N-th and the 1st exits. All the numbers in a line are separated by a space. The second line gives a positive integer M (≤10?4??), with M lines follow, each contains a pair of exit numbers, provided that the exits are numbered from 1 to N. It is guaranteed that the total round trip distance is no more than 10?7??.

Output Specification:
For each test case, print your results in M lines, each contains the shortest distance between the corresponding given pair of exits.

Sample Input:
5 1 2 4 14 9
3
1 3
2 5
4 1

Sample output:
3
10
7


題意:給定N,后接N個數,數i為第i個點到第i+1個點的距離。
輸入M,后接M組數。輸出從x到y的最短距離。

最初的思路:對于每組數,從前以及向后遍歷,分別得到兩個值,輸出最小值即可。

分析一下時間復雜度:極限數據為十萬個點,一萬組數據。若處理每組數據的規模為O(n), 最后的計算量為10w*1w=10e。而一百毫秒大約可以運行三十萬組數據, 顯然超時

那么就要求我們把求最短距離的復雜度控制在常數級O(1)

改進思想:一次性累加、保存所有點到點1的距離,對于任意兩點間距離的計算,只需相減即可。具體邏輯請閱讀代碼體會。


#include<bits/stdc++.h> using namespace std; int main() {ios::sync_with_stdio(false);int n; cin >> n;vector<int>dis(n+1);int sum = 0, left, right, cnt;for(int i = 1; i <= n; i++) {int temp; cin >> temp;sum += temp;dis[i] = sum;} // for(int i = 1; i <= n; i++) { // cout << dis[i] << ' '; // }cin >> cnt;for(int i = 0; i < cnt; i++) {cin >> left >> right;if(left > right) swap(left, right); int temp = dis[right-1]-dis[left-1]; //順時針這條路 cout << min(temp, sum-temp) << '\n'; //sum-temp是逆時針這條路 }return 0; }

耗時:


求贊哦~ (?ω?)

總結

以上是生活随笔為你收集整理的【测试点2超时问题】1046 Shortest Distance (20 分)_21行代码AC的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。