博客
关于我
团体程序设计天梯赛L1-027 出租 (20分)(附分析)
阅读量:89 次
发布时间:2019-02-26

本文共 1648 字,大约阅读时间需要 5 分钟。

???????????????????????????????????

  • ???????????????????11???????????

  • ??????????????????????

  • ??????????????????????????????arr???

  • ????????????????????????arr??????????index????

  • ???????arr?index????????????

  • ??????C++?????

    #include 
    #include
    #include
    using namespace std;int main() { string tel; cin >> tel; // ??????????? vector
    uniqueDigits; for (char c : tel) { int digit = c - '0'; if (find(uniqueDigits.begin(), uniqueDigits.end(), digit) == uniqueDigits.end()) { uniqueDigits.push_back(digit); } } sort(uniqueDigits.rbegin(), uniqueDigits.rend()); // ?????? vector
    index(11); for (int i = 0; i < 11; ++i) { int digit = tel[i] - '0'; for (int j = 0; j < uniqueDigits.size(); ++j) { if (digit == uniqueDigits[j]) { index[i] = j; break; } } } // ???? cout << "int[] arr = new int[]{""; for (int digit : uniqueDigits) { cout << digit; if (!uniqueDigits.empty() && uniqueDigits != prev) { cout << ","; } } cout << "};" << endl; cout << "int[] index = new int[]{""; for (int i : index) { cout << i; if (!index.empty() && index != prev) { cout << ","; } } cout << "};" << endl;}

    ?????

    • ???????cin >> tel?????????????
    • ????????????????????????????????uniqueDigits???????
    • ???????sort???uniqueDigits???????
    • ??????????????????arr?????????index????
    • ?????????????arr?index?????????????????????????????

    ?????????????11?????????????????????

    转载地址:http://kwkk.baihongyu.com/

    你可能感兴趣的文章
    Notes on Paul Irish's "Things I learned from the jQuery source" casts
    查看>>
    Notification 使用详解(很全
    查看>>
    NotImplementedError: Cannot copy out of meta tensor; no data! Please use torch.nn.Module.to_empty()
    查看>>
    NotImplementedError: Could not run torchvision::nms
    查看>>
    nova基于ubs机制扩展scheduler-filter
    查看>>
    Now trying to drop the old temporary tablespace, the session hangs.
    查看>>
    nowcoder—Beauty of Trees
    查看>>
    np.arange()和np.linspace()绘制logistic回归图像时得到不同的结果?
    查看>>
    np.power的使用
    查看>>
    NPM 2FA双重认证的设置方法
    查看>>
    npm build报错Cannot find module ‘html-webpack-plugin‘解决方法
    查看>>
    npm build报错Cannot find module ‘webpack/lib/rules/BasicEffectRulePlugin‘解决方法
    查看>>
    npm build报错Cannot find module ‘webpack‘解决方法
    查看>>
    npm C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe` failed with exit code: 1
    查看>>