f315. 4. 低地距離 - 高中生程式解題系統
本文最後更新於:2024年3月30日 下午
Zerojudge
解題紀錄
f315. 4. 低地距離 - 高中生程式解題系統
// Author : ysh
// 04/03/2022 Sun 18:07:36.20
#include<bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int a;cin>>a;
vector<int>f(a);
for(int &i : f) {
cin>>i;
}
bitset<100000>s;
for(int i = 0;i<a;i++) {
}
}
f315. 4. 低地距離 - 高中生程式解題系統
http://mysh212.github.io/algosolution/Zerojudge-f315.cpp/