本文主要是介绍CF 1B. Spreadsheets(自己代码以及大神代码),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这个题自己写了写 发现自己代码能力真是太弱了。 题目很简单。 就是两种进制转换,转来转去。。
满27进1 留1 差不多就是这样。
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <algorithm>
#include <fstream>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <vector>
#include <cmath>
#include <iomanip>
#include <cmath>
typedef long long LL;
typedef unsigned long long LLU;
const double PI=acos(-1.0);
using namespace std;
#define MAXN 100000+10
#define INF 1 << 30
int _pow(int a, int b){int t = 1;for(int i = 0; i < b; i++)t *= a;return t;
}
int main (){int n;scanf("%d",&n);while(n--){char s[MAXN];int r,c;scanf("%s",s);int flag = 0;
这篇关于CF 1B. Spreadsheets(自己代码以及大神代码)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!