這部份 貌似是 輸入的測資很長(10^150),解決的方法有2(自己已經測試過了)
自己的程式 是這樣
string + map [ 0.4 S, 29.6MB]
long double + map [0.8 S,4.1MB]
要空間 還是要效率 可以自己取決
std::ios::sync_with_stdio(false);
std::cin.tie(0);
例如:
#include <bits/stdc++.h>
using namespace std;
int main(){
std::ios::sync_with_stdio(false);
std::cin.tie(0);
int m,n;
cin >> m >> n;
......
}