技术岗25届暑期实习更新,秋招已预热

5.27 更新

  1. 华泰证券(秋招):https://wecruit.hotjob.cn/SU5d4bd89a9b0d7889b8422dbe/mc/position/campus
  2. 长江证券(暑期实习):https://cjzq.zhiye.com/intern/jobs
  3. 壁仞科技(暑期实习,国产高端GPU芯片头部企业):https://app.mokahr.com/campus-recruitment/biren/44727#/
  4. 江苏银行(暑期实习):https://hr.jsbchina.cn/spa/custom/static/index.html?WxUg5ztDmi=1716216637636#/main/cs/app/415469a50449415a9b56642c69728966_traineesva
  5. 万得(秋招提前批)https://mp.weixin.qq.com/s/6VT6wudFaN3MZzlQTPuI_Q
  6. 中国信通院(暑期实习):https://wecruit.hotjob.cn/SU643e3338bef57c46afe6213d/mc/position/intern?projectCode=101701
  7. 中金所(暑期实习):https://cffexit.zhiye.com/
  8. 百智诚远(暑期实习):https://mp.weixin.qq.com/s/_EvZIISp3i27GvEHu4s8pA
  9. 长沙银行(暑期实习):https://wecruit.hotjob.cn/SU628df38b0dcad4099b64fbaf/mc/position/intern
  10. 游族网络 饭团工作室(暑期实习):https://mp.weixin.qq.com/s/KQhii8nfXgO2H_PsMqHNCw
  11. 收钱吧(暑期实习):https://shouqianba.zhiye.com/intern/jobs
  12. 台积电(暑期实习):https://wecruit.hotjob.cn/SU6232b78f2f9d244b1b501e1c/mc/position/intern?projectCode=100701&channelId=631158722f9d240af5514827&showProjectBanner=true
  13. 岚图汽车(暑期实习):https://dfmc.hotjob.cn/SU60cc3c9cbef57c51986a8ca0/pb/school.html?projectCode=203401&showProjectBanner=true
  14. 景嘉微电子(暑期实习):https://jingjiamicro1.zhiye.com/intern/jobs
  15. TP-LINK(秋招提前批):https://hr.tp-link.com.cn/jobList?jobId=0&jobDirection=0&workPlace=0&currentPage=1&keyword=
  16. 极氪 破云计划(秋招提前批):https://mp.weixin.qq.com/s/XhLdqN0EZCaRHTvLHdy2Kw
  17. 杭州银行(暑期实习):https://myjob.hzbank.com.cn/hzzp-apply/dist/static/index.html#/employ/ungraduate

神奇的代码

最后来串神奇的代码,祝大家都能有一个好 Offer!

public String getFuckOffer() {
	// 投递简历
	sendResume("......");
	// 准备面试
	System.out.println("*******【*********】");
	// 收获 Offer
    return "OC!";
}

全部评论

相关推荐

头像
03-07 20:59
已编辑
华中科技大学 Java
1,第一题,可以发现每个数只有与不一样的数交换才有贡献,比第i位为1,i < j,只有s[j]为0才可以交换,统计一下前/后缀0/1的个数就可以了,然后加一下贡献```#include <iostream>#include <vector>using namespace std;int main() {    string s;    while (cin >> s) {        long long res = 1;        vector<int> a0(s.size() + 1, 0), a1(s.size() + 1, 0);        for (int i = s.size() - 1; i >= 0; i --) {            if (s[i] == '0') {                a0[i] = a0[i + 1] + 1;                a1[i] = a1[i + 1];                res += 1ll * a1[i];            } else {                a0[i] = a0[i + 1];                a1[i] = a1[i + 1] + 1;                res += 1ll * a0[i];            }        }        cout << res << '\n';    }}// 64 位输出请用 printf("%lld")```2,可以hash一下每个图,每一行有多少个?每一行的值就是多少,11111代表五行每行都只有一个问号,后面就容易不少了。#include <iostream>#include <string>using namespace std;int main() {    int n;    cin >> n;    while (n --) {        string map[6];        int hash = 0;        for (int i = 0; i < 5; i ++) {            cin >> map[i];            int count = 0;            for (int j = 0; j < 5; j ++) {                if (map[i][j] != '#') count ++;            }            hash = hash * 10 + count;         }        // cout << "hash:" << hash <<'\n';        if (hash == 32223) {            cout <<0;        } else if (hash == 11111) {            cout << 1;        } else if (hash == 22311) {            cout << 4;        } else if (hash == 31111) {            cout << 7;        } else if (hash == 31323) {            cout << 6;        } else if (hash == 32323) {            cout << 8;        } else if (hash == 32313) {            cout << 9;        } else {            if (map[1][3] != '#') {                if (map[3][1] != '#') cout << 2;                else cout << 3;            } else {                cout << 5;            }        }    }    }// 64 位输出请用 printf("%lld")3,字典树比较模板的题,可以学一下字典树怎么写的,然后在字典树路径下贪心找最优解#牛客AI配图神器# #include <iostream>using namespace std;const int N = 2e5 + 10;int tr[N * 60][2], cnt[N * 60][2], ind;void insert(int x, int mod) {    int p = 0;    for (int i = 31; i >= 0; i--) {        int v = x >> i & 1;        if (tr[p][v] == 0) tr[p][v] = ++ind;        cnt[p][v] += mod;        p = tr[p][v];    }}int getMaxXor(int x) {    int res = 0, p = 0;    for (int i = 31; i >= 0 ; i --) {        int v = x >> i & 1;        if (cnt[p][!v]) {            p = tr[p][!v];            res += 1 << i;        } else {            p = tr[p][v];        }    }    return res;}signed main() {    int n;    cin >> n;    int cnt = 0;    while (n --) {        int a, b;        cin >> a >> b;        if (a == 1) {            cnt ++;            insert(b, 1);        } else if (a == 2) {            cnt --;            insert(b, -1);        } else {            if (cnt == 0)             cout << -1 << '\n';            else cout << getMaxXor(b) << '\n';        }    }}// 64 位输出请用 printf("%lld")
在西伯利亚种土豆:这第二题直接暴力if else结果出bug了,调了半小时眼睛都快瞎了。还是大佬这方法简单
投递饿了么等公司10个岗位
点赞 评论 收藏
分享
评论
7
35
分享

创作者周榜

更多
牛客网
牛客企业服务